This repository has been archived by the owner on Nov 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
370 lines (315 loc) · 13.7 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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="styles/main.css" />
<title>Playlists — Musiquinhas</title>
<meta name="description" content="🎧 Curta o seu som! 🎸">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Playlists — Musiquinhas">
<meta itemprop="description" content="🎧 Curta o seu som! 🎸">
<meta itemprop="image" content="assets/background.png">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://musiquinhas.netlify.app">
<meta property="og:type" content="website">
<meta property="og:title" content="Playlists — Musiquinhas">
<meta property="og:description" content="🎧 Curta o seu som! 🎸">
<meta property="og:image" content="assets/background.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Playlists — Musiquinhas">
<meta name="twitter:description" content="🎧 Curta o seu som! 🎸">
<meta name="twitter:image" content="assets/background.png">
</head>
<body>
<div id="app">
<header class="app-header">
<nav>
<strong>🎧 Musiquinhas</strong>
<div role="navigation">
<button type="button" title="Criar uma conta">Inscrever-se</button>
<button type="button" title="Entrar na sua conta">Entrar</button>
</div>
</nav>
</header>
<main>
<section id="favoritas">
<header>
<div>
<strong>Favoritas</strong>
<a href="#favoritas" title="Ver mais playlists">Ver mais</a>
</div>
<p>Suas playlists favoritas de todos os tempos</p>
</header>
<ul class="playlists">
<li id="acdc-live-at-donnington">
<div>
<a href="#acdc-live-at-donnington">
<img src="https://i.scdn.co/image/ab67616d0000b27326b32820b869763b5d706c26"
alt="AC/DC Live at Donnington">
<strong title="AC/DC Live at Donnington">AC/DC Live at Donnington</strong>
<span>Rock'n roll.</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="acdc-live-at-river-plate">
<div>
<a href="#acdc-live-at-river-plate">
<img src="https://bilder.buecher.de/produkte/36/36589/36589826z.jpg" alt="AC/DC Live at River Plate">
<strong title="AC/DC Live at River Plate">AC/DC Live at River Plate</strong>
<span>Mais rock'n roll ainda.</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="villains">
<div>
<a href="#villains">
<img src="https://i.scdn.co/image/ab67616d0000b273c96f7c7b077c224975b4c5ce" alt="Villains">
<strong title="Villains">Villains</strong>
<span>Quens of the Stone Age total.</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
</ul>
</section>
<section id="best-of-the-best">
<header>
<div>
<strong>Best of the best</strong>
<a href="#best-of-the-best" title="Ver mais playlists">Ver mais</a>
</div>
<p>Simplesmente as melhores dos melhores</p>
</header>
<ul class="playlists">
<li id="guns-and-roses-appetite-for-destructionn">
<div>
<a href="#guns-and-roses-appetite-for-destructionn">
<img src="https://i.scdn.co/image/ab67616d0000b27368384dd85fd5e95831252f60"
alt="Guns'n Roses • Appetite for Destruction">
<strong title="Guns'n Roses • Appetite for Destruction">Guns'n Roses • Appetite for Destruction</strong>
<span>Appetite for Destruction</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="deep-purple-burn">
<div>
<a href="#deep-purple-burn">
<img src="https://i.scdn.co/image/ab67616d0000b273189077bdd7db03dfa349afee" alt="Deep Purple • Burn">
<strong title="Deep Purple • Burn">Deep Purple • Burn</strong>
<span>Burn (30th Anniversary Edition), more deep, more purple</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="acdc-highway-to-hell">
<div>
<a href="#acdc-highway-to-hell">
<img src="https://i.scdn.co/image/ab67616d0000b27351c02a77d09dfcd53c8676d0"
alt="AC/DC • Highway to Hell">
<strong title="AC/DC • Highway to Hell">AC/DC • Highway to Hell</strong>
<span>On the road... 😎</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="whitesnake-fresh-and-blood">
<div>
<a href="#whitesnake-fresh-and-blood">
<img src="https://i.scdn.co/image/ab67616d0000b273cdd7f4bcdd32391a999ae4b6"
alt="Whitesnake • Fresh & Blood">
<strong title="Whitesnake • Fresh & Blood">Whitesnake • Fresh & Blood</strong>
<span>Fresh & Blood (Deluxe edition)</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="scorpions-comeblack">
<div>
<a href="#scorpions-comeblack">
<img src="https://i.scdn.co/image/ab67616d0000b2739f2023d391c3bd4acf4d51c6" alt="Scorpions • Comeblack">
<strong title="Scorpions • Comeblack">Scorpions • Comeblack</strong>
<span>Just rock you like a hurricane</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
</ul>
</section>
<section id="foco">
<header>
<div>
<strong>Foco</strong>
<a href="#foco" title="Ver mais playlists">Ver mais</a>
</div>
<p>Músicas para te ajudar na concentração</p>
</header>
<ul class="playlists">
<li id="trabalhado-de-casa">
<div>
<a href="#trabalhado-de-casa">
<img src="https://i.scdn.co/image/ab67706f000000020c527c5b3a3398fc24082d5b" alt="Trabalhando de casa">
<strong title="Trabalhando de casa">Trabalhando de casa</strong>
<span>Uma seleção de hits para te acompanhar no home office.</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="foco-com-energia">
<div>
<a href="#foco-com-energia">
<img src="https://i.scdn.co/image/ab67706f00000002c79dea334dad0be915d7fcb6" alt="Foco com Energia">
<strong title="Foco com Energia">Foco com Energia</strong>
<span>Beats instrumentais para te ajudar a focar mantendo o ânimo.</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="home-office">
<div>
<a href="#home-office">
<img src="https://i.scdn.co/image/ab67706f00000002e582276a98655a4ab00102cd" alt="Home Office">
<strong title="Home Office">Home Office</strong>
<span>Uma seleção good vibes pra você trabalhar de boa!</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="foco-no-estudo">
<div>
<a href="#foco-no-estudo">
<img src="https://i.scdn.co/image/ab67706f000000026f1beb9a5961dc32f57835e5" alt="Foco no estudo">
<strong title="Foco no estudo">Foco no estudo</strong>
<span>Lorem ipsum dolor sit, amet consectetur adipisicing ebuttont. Ab laudantium tempora
temporibus.</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
</ul>
</section>
<section id="seu-astral">
<header>
<div>
<strong>Seu astral</strong>
<a href="#seu-astral" title="Ver mais playlists">Ver mais</a>
</div>
<p>Playlists que combinam com seu astral</p>
</header>
<ul class="playlists">
<li id="verao-forever">
<div>
<a href="#verao-forever">
<img src="https://i.scdn.co/image/ab67706f00000002e67d80f5418a7502d5fce642" alt="Verão forever">
<strong title="Verão forever">Verão forever</strong>
<span>Aqui o verão dura 365 dias! Passe o protetor solar, aumente o som e aperte o play!</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="hits-felizes">
<div>
<a href="#hits-felizes">
<img src="https://i.scdn.co/image/ab67706f000000023d7631770cb0914e6c590dea" alt="Hits felizes">
<strong title="Hits felizes">Hits felizes</strong>
<span>Mantenha a energia positiva!</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="alto-astral">
<div>
<a href="#alto-astral">
<img src="https://i.scdn.co/image/ab67706f00000002022dd43c1d92dff8b301db2b" alt="Alto astral">
<strong title="Alto astral">Alto astral</strong>
<span>Hits e clássicos para jogar sua energia lá em cima!</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="mood-booster">
<div>
<a href="#mood-booster">
<img src="https://i.scdn.co/image/ab67706f00000002aa93fe4e8c2d24fc62556cba" alt="Mood booster">
<strong title="Mood booster">Mood booster</strong>
<span>Get happy with this pick-me-up playlist full of current feel-good songs!</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="alone-again">
<div>
<a href="#alone-again">
<img src="https://i.scdn.co/image/ab67706f0000000265af49474d91827160b56b27" alt="Alone again">
<strong title="Alone again">Alone again</strong>
<span>When everything is lonely, I can be my best friend.</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
<li id="feeling-good">
<div>
<a href="#feeling-good">
<img src="https://i.scdn.co/image/ab67706f0000000213a02d059c0479e65a850267" alt="Feelin' good">
<strong title="Feelin' good">Feelin' good</strong>
<span>Feel good with this positively timeless playlist!</span>
</a>
<button type="button" tabindex="-1" title="Tocar playlist">
<i class="material-icons">play_arrow</i>
</button>
</div>
</li>
</ul>
</section>
</main>
<footer class="app-footer">
<div class="center-content">
<span>© 2022 Matheus Felipe Zanin</span>
<small>
Página desenvolvida puramente como exemplo para o evento "Palestras de TI", do SENAC Portão.
</small>
</div>
</footer>
</div>
</body>
</html>