-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
216 lines (216 loc) · 7.3 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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Frontend Basics</title>
<meta charset="utf-8">
<meta content='NOINDEX, NOFOLLOW' name='robots'>
<meta name="description" content=" Frontend Basic">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/@shower/ribbon/styles/styles.css">
<link rel="stylesheet" href="fontawesome-free-5.14.0-web/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body class="shower list">
<header class="caption">
<h1>Frontend Basics</h1>
<p>Frontend Cheat Sheet</p>
</header>
<section class="slide slide--title">
<h2>Frontend Basics</h2>
</section>
<section class="slide">
<h2>HTML Basics</h2>
<ol>
<li><a href="intro.html">Intro</a></li>
<li><a href="lesson_1.html">HTML Introduction</a></li>
<li><a href="lesson_2.html">Lists, tables, images</a></li>
<li><a href="lesson_3.html">Forms</a></li>
<li><a href="lesson_4.html">Other HTML tags</a></li>
<li><a href="lesson_4_2.html">Semantics and Accessibility</a></li>
</ol>
</section>
<section class="slide">
<h2>CSS Basics | Part 1</h2>
<ol>
<li><a href="lesson_5.html">CSS Introduction</a></li>
<li><a href="lesson_6.html">CSS Selectors</a></li>
<li><a href="lesson_6_2.html">Box Model</a></li>
<li><a href="lesson_7.html">Float</a></li>
<li><a href="lesson_8_1.html">Position</a></li>
<li><a href="lesson_8_2.html">Pseudo-classes. Pseudo-elements.</a></li>
<li><a href="lesson_9.html">UI Graphics</a></li>
</ol>
</section>
<section class="slide">
<h2>CSS Basics | Part 2</h2>
<ol style="display: flex; flex-direction: column; height: 350px; flex-wrap: wrap;">
<li><a href="lesson_10.html">Flexbox</a></li>
<li><a href="lesson_11.html">Transition</a></li>
<li><a href="lesson_12.html">Responsive Design</a></li>
<li><a href="lesson_13.html">Responsive Images</a></li>
<li><a href="lesson_14.html">SASS Preprocessor</a></li>
<li><a href="lesson_15.html">CSS Methodologies. BEM</a></li>
<li><a href="lesson_16.html">CSS Frameworks</a></li>
<li><a href="lesson_17.html">CSS Animations</a></li>
<li><a href="lesson_18.html">Image Optimization</a></li>
<li><a href="lesson_19.html">SVG Introduction</a></li>
<li><a href="lesson_20.html">CSS Grid Introduction</a></li>
</ol>
</section>
<section class="slide">
<h2>Extra</h2>
<ol>
<li><a href="extra_1.html">GIT Introduction</a></li>
<li><a href="extra_2.html">Performance Optimization</a></li>
</ol>
</section>
<section class="slide">
<h2>References and Specifications</h2>
<ul>
<li><a href="https://developer.mozilla.org/" target="_blank">MDN</a></li>
<li><a href="https://validator.w3.org/" target="_blank">Markup Validation Service</a></li>
<li><a href="https://html.spec.whatwg.org/multipage/" target="_blank">HTML Living Standard</a></li>
</ul>
</section>
<section class="slide">
<h2>Soft</h2>
<ul>
<li><a href="https://code.visualstudio.com/" target="_blank">Visual Studio Code</a></li>
<li><a href="https://www.figma.com/" target="_blank">Figma</a></li>
</ul>
</section>
<section class="slide">
<h2>Practice</h2>
<ol style="display: flex; flex-direction: column; height: 350px; flex-wrap: wrap;">
<li>
<a href="https://www.figma.com/file/F76Tvy020qv1cWqxoMj5VH/Thousand-Sunny?node-id=0%3A1" target="_blank">
Thousand Sunny
</a>
</li>
<li>
<a href="https://www.figma.com/file/Z0ZMAmnIMizwmn5QxrCrf2/Trafalgar" target="_blank">
Trafalgar
</a>
</li>
<li>
<a href="https://www.figma.com/file/E6xNcvoOLUTAW4mK08tMwn5f/Templates-8.-More-on-Figma.info?node-id=0%3A1" target="_blank">
HouseVOP
</a>
</li>
<li>
<a href="https://www.figma.com/file/ojOaX2Czf1jzreI3045NRH/CloudBudget?node-id=0%3A1" target="_blank">
CloudBudget
</a>
</li>
<li>
<a href="https://www.figma.com/file/pojfwnaIFQGcz7iyuTX4Nt/Best-tour-plan?node-id=0%3A1" target="_blank">
Best tour plan
</a>
</li>
<li>
<a href="https://www.figma.com/file/WSuTvcLksjNawuoMhPzHZr/FREEBIE-Landingpage-LaslesVPN?node-id=0%3A1" target="_blank">
LaslesVPN
</a>
</li>
<li>
<a href="https://www.figma.com/file/yy1yt2OvHxiCc4bk4HNbYN/Figma-Website-Template-Landie-Demo-Community?node-id=0%3A88" target="_blank">
Landie
</a>
</li>
<li>
<a href="https://www.figma.com/file/dY6WZsjYnKR4KtxTB7PfI9/Portofolio?node-id=0%3A1" target="_blank">
Portofolio
</a>
</li>
<li>
<a href="https://www.figma.com/file/na2rSmAb58xuuRo2r7DKKC/PORTEN?node-id=0%3A1" target="_blank">
Porten
</a>
</li>
<li>
<a href="https://www.figma.com/file/ZYUdbl8MiXRTPQhzGLJPcz/Wedding?node-id=0%3A1" target="_blank">
Wedding
</a>
</li>
<li>
<a href="https://www.figma.com/file/S8AuIMoqa469uussv3YQVq/Untitled?node-id=0%3A1" target="_blank">
Portofolio 2
</a>
</li>
<li>
<a href="https://www.figma.com/file/ikTF0GylJhT2JvIAi0y7jF/game-landing-freebie-by-alicilinia?node-id=0%3A1" target="_blank">
SOS
</a>
</li>
<li>
<a href="https://www.figma.com/file/6KtTFTuH8JpuTIB1PIaWpW/Untitled-1?node-id=0%3A1" target="_blank">
Moon
</a>
</li>
<li>
<a href="https://www.figma.com/file/9O7RWC96VC9wKbx4PCEGsy/Untitled?node-id=0%3A1" target="_blank">
Spaced
</a>
</li>
<li>
<a href="https://www.figma.com/file/yIhDGsOBK5ePAuerCXQH5W/Source-file?node-id=0%3A1" target="_blank">
DreamMaker
</a>
</li>
</ol>
</section>
<section class="slide">
<h2>VS Code Extensions</h2>
<table>
<tr>
<td>indent highlighting</td>
<td>
<a href="https://marketplace.visualstudio.com/items?itemName=oderwat.indent-rainbow" target="_blank">
indent-rainbow
</a>
</td>
</tr>
<tr>
<td>live reload</td>
<td>
<a href="https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer" target="_blank">
Live Server
</a>
</td>
</tr>
<tr>
<td>SASS Syntax</td>
<td>
<a href="https://marketplace.visualstudio.com/items?itemName=Syler.sass-indented" target="_blank">
Sass
</a>
</td>
</tr>
<tr>
<td>SASS Compiler</td>
<td>
<a href="https://marketplace.visualstudio.com/items?itemName=ritwickdey.live-sass" target="_blank">
Live Sass Compiler
</a>
</td>
</tr>
</table>
</section>
<section class="slide">
<h2>Other Links</h2>
<ul>
<li>
<code>https://via.placeholder.com/300x300</code>
</li>
<li>
<code>https://source.unsplash.com/600x600?coffee</code>
</li>
</ul>
</section>
<footer class="badge">
<a href="/">Home</a>
</footer>
<div class="progress"></div>
<script src="node_modules/@shower/core/dist/shower.js"></script>
</body>
</html>