-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
188 lines (188 loc) · 8.24 KB
/
index.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML & CSS Essentials</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Montserrat:wght@400;700&family=Piazzolla:wght@400;700&family=Red+Hat+Display:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/style.css" />
<link rel="shortcut icon" href="./assets/favicon.ico" type="image/x-icon" />
</head>
<body>
<div class="wrapper">
<header class="header">
<a href="./index.html">
<img class="header__img" src="./assets/desain-logo.svg" />
</a>
</header>
<main>
<aside class="sidebar">
<ul>
<li class="active">
<a href="./index.html"
><p>Typography</p>
<span>></span></a
>
</li>
<li>
<a href="./elements.html"
><p>Elements</p>
<span>></span></a
>
</li>
<li>
<a href="./blocks.html"
><p>Blocks</p>
<span>></span></a
>
</li>
</ul>
</aside>
<div class="container">
<h1 class="title">Typography</h1>
<section class="section_content">
<h2 class="subtitle">Headings</h2>
<article class="headings__content">
<h1>h1. Eat, sleep, code, and repeat!</h1>
<h2>h2. Eat, sleep, code, and repeat!</h2>
<h3>h3. Eat, sleep, code, and repeat!</h3>
<h4>h4. Eat, sleep, code, and repeat!</h4>
<h5>h5. Eat, sleep, code, and repeat!</h5>
<h6>h6. Eat, sleep, code, and repeat!</h6>
</article>
<div class="code_content">
<code class="code_line">
<span class="code_line--tag"><h1</span
><span class="code_line--attribute"> class=</span
><span class="code_line--value">"h1"</span
><span class="code_line--tag">></span>Eat, sleep, code, and
repeat!<span class="code_line--tag"></h1></span>
</code>
<code class="code_line">
<span class="code_line--tag"><h2</span
><span class="code_line--attribute"> class=</span
><span class="code_line--value">"h2"</span
><span class="code_line--tag">></span>Eat, sleep, code, and
repeat!<span class="code_line--tag"></h2></span>
</code>
<code class="code_line">
<span class="code_line--tag"><h3</span
><span class="code_line--attribute"> class=</span
><span class="code_line--value">"h3"</span
><span class="code_line--tag">></span>Eat, sleep, code, and
repeat!<span class="code_line--tag"></h3></span>
</code>
<code class="code_line">
<span class="code_line--tag"><h4</span
><span class="code_line--attribute"> class=</span
><span class="code_line--value">"h4"</span
><span class="code_line--tag">></span>Eat, sleep, code, and
repeat!<span class="code_line--tag"></h4></span>
</code>
<code class="code_line">
<span class="code_line--tag"><h5</span
><span class="code_line--attribute"> class=</span
><span class="code_line--value">"h5"</span
><span class="code_line--tag">></span>Eat, sleep, code, and
repeat!<span class="code_line--tag"></h5></span>
</code>
<code class="code_line">
<span class="code_line--tag"><h6</span
><span class="code_line--attribute"> class=</span
><span class="code_line--value">"h6"</span
><span class="code_line--tag">></span>Eat, sleep, code, and
repeat!<span class="code_line--tag"></h6></span>
</code>
</div>
</section>
<section class="section_content">
<h2 class="subtitle">Paragraph</h2>
<article class="paragraph_content">
<p>
The best programs are written so that computing machines can
perform them quickly and so that human beings can
<span>understand them clearly</span>. A programmer is ideally an
essayist who works with traditional aesthetic and literary forms
as well as mathematical concepts, to communicate the way that an
algorithm works and to convince a reader that the results will
be correct.
</p>
</article>
<div class="code_content">
<code class="code_line">
<span class="code_line--tag"><p</span
><span class="code_line--tag">></span>
<span class="code_line--tag"></p></span>
</code>
</div>
</section>
<section class="section_content">
<h2 class="subtitle">Quote</h2>
<article class="quote_content">
<blockquote>
<p>
“Any fool can write code that a computer can understand. Good
programmers write code that humans can understand.”
</p>
<h6>- Martin Fowler</h6>
</blockquote>
</article>
<div class="code_content">
<code class="code_line">
<span class="code_line--tag"><blockquote</span
><span class="code_line--tag">></span>
<span class="code_line--tag"></blockquote></span>
</code>
</div>
</section>
<section class="section_content">
<h2 class="subtitle">Colors</h2>
<article class="colors_content">
<div class="color_element">
<div class="color_element__img color_element--blue"></div>
<p class="color_element__name">blue #118AB2</p>
</div>
<div class="color_element">
<div class="color_element__img color_element--green"></div>
<p class="color_element__name">green #06D6A0</p>
</div>
<div class="color_element">
<div class="color_element__img color_element--yellow"></div>
<p class="color_element__name">yellow #FFD166</p>
</div>
<div class="color_element">
<div class="color_element__img color_element--red"></div>
<p class="color_element__name">red #EF476F</p>
</div>
<div class="color_element">
<div class="color_element__img color_element--midnight"></div>
<p class="color_element__name">midnight #073B4C</p>
</div>
<div class="color_element">
<div class="color_element__img color_element--light"></div>
<p class="color_element__name">light #F8F9FA</p>
</div>
<div class="color_element">
<div class="color_element__img color_element--white"></div>
<p class="color_element__name">white #FFFFFF</p>
</div>
<div class="color_element">
<div class="color_element__img color_element--gray"></div>
<p class="color_element__name">gray #888888</p>
</div>
<div class="color_element">
<div class="color_element__img color_element--black"></div>
<p class="color_element__name">black #262626</p>
</div>
</article>
</section>
</div>
</main>
</div>
</body>
</html>