-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.html
128 lines (107 loc) · 4.89 KB
/
css.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IcsoLearn.</title>
<!-- css -->
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/utility-class.css">
<!-- google font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!-- icons -->
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<!-- header -->
<header class="header" id="header">
<nav class="navbar-bx">
<div class="container">
<div class="navbar nav d-flex align-items-center flex-between">
<div class="nav-title">
<a href="index.html" class="text-decoration-none fs-4 fc-main fw-semibold">IcsoLearn.</a>
</div>
<div class="ham-ico" id="ham-ico">
<input type="checkbox">
<span></span>
<span></span>
<span></span>
</div>
<div class="nav-menu fs-8" id="nav-menu">
<a href="index.html" class="nav-link ml-3 ">Home</a>
<a href="html.html" class="nav-link ml-3 ">HTML</a>
<a href="css.html" class="nav-link ml-3 active">CSS</a>
<a href="javascript.html" class="nav-link ml-3 ">Javascript</a>
</div>
</div>
</div>
</nav>
</header>
<div class="container mt-10">
<main class="d-flex html">
<div class="main-section">
<section id="Apa-Itu">
<div class="title">
<h2 class="fs-3 fc-dark">Apa Itu CSS?</h2>
</div>
<div class="data mt-2">
<p class="data-css fs-8 fw-reguler fc-text"></p>
<span class="fs-10 fw-reguler opacity-50">Resource dari Wikipedi</span>
</div>
</section>
<section id="sejarah" class="mt-5">
<div class="title"><h2 class="fs-3 fc-dark">Sejarah CSS</h2></div>
<div class="data-sejarah mt-4">
<p class="sejarah-1 fs-8 fw-reguler fc-text"></p>
<p class="sejarah-2 fs-8 fw-reguler fc-text mt-4"></p>
<p class="sejarah-3 fs-8 fw-reguler fc-text mt-4"></p>
<span class="fs-10 fw-reguler opacity-50">Resource dari idCloud Host</span>
</div>
</section>
<section id="fungsi" class="mt-5">
<div class="title"><h2 class="fs-3 fc-dark">Fungsi HTML</h2></div>
<div class="data-fungsi">
<p class="fungsi-1 fs-8 mt-4 fw-reguler fc-text"></p>
<p class="fungsi-2 fs-8 mt-4 fw-reguler fc-text"></p>
<p class="fungsi-3 fs-8 mt-4 fw-reguler fc-text"></p>
<span class="fs-10 fw-reguler opacity-50">Resource dari DewaWeb</span>
</div>
</section>
<section id="struktur-dasar" class="mt-5">
<div class="title"><h2 class="fs-3 fc-dark">Struktur Dasar CSS</h2></div>
<div class="struktur-img mt-5">
<img src="assets/img/struktur_css.png" alt="struktur-css">
</div>
</section>
<section class="back-to-top-section mt-5">
<a href="#header" class="back-top-top fs-5"><i class='bx bx-chevron-up'></i></a>
</section>
</div>
<aside class="side-nav">
<div class="aside-content">
<div class="title"><h2 class="fs-3 fc-dark">Navigasi</h2></div>
<div class="aside-links d-flex mt-5">
<a href="#Apa-Itu" class="text-decoration-none mb-5 fc-text fs-9">Apa itu CSS <span class="fc-main">#</span></a>
<a href="#sejarah" class="text-decoration-none mb-5 fc-text fs-9">Sejarah CSS <span class="fc-main">#</span></a>
<a href="#fungsi" class="text-decoration-none mb-5 fc-text fs-9">Fungsi CSS <span class="fc-main">#</span></a>
<a href="#struktur-dasar" class="text-decoration-none mb-5 fc-text fs-9">Struktur Dasar CSS <span class="fc-main">#</span></a>
</div>
</div>
</aside>
</main>
</div>
<footer class="mt-5">
<div class="container">
<hr class="opacity-50">
<div class="copy pt-4 pb-4">
<span class="fs-10 fc-text">© Copyright Rflyfrmnssyh 2022</span>
</div>
</div>
</footer>
<!-- Javascript -->
<script src="assets/js/data-css.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>