-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
428 lines (423 loc) · 18.9 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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spotify Web</title>
<!--Favicon-->
<link rel="icon" href="img/favicon.ico" sizes="16x16 24x24 32x32 48x48 64x64 128x128">
<!--/ Favicon-->
<!--Collegamento Google Font Montserrat-->
<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=Montserrat:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<!--/ Collegamento Google Font Montserrat-->
<!--Collegamento Font Awesome-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!--/Collegamento Font Awesome-->
<!--Collegamento File Css-->
<link rel="stylesheet" href="css/style.css">
<!--/ Collegamento File Css-->
</head>
<body>
<!--Web-app-->
<!--Web-app: top-->
<main id="main-container" class="flex-row">
<!--Sidenav-->
<nav id="col-nav" class="flex-column">
<!--Sidenav: top-->
<!-- Section logo-->
<div class="logo">
<img src="img/logo.svg" alt="logotipo" class="logotipo image from-s">
<img src="img/logo-small.svg" alt="logo" class="logo-small image only-xs">
</div>
<!-- /Section logo-->
<!-- Section menu-->
<ul class="menu">
<!--Section menu: home-->
<li class="active">
<a href="#" target="_blank" class="btn flex-row">
<img src="img/home.svg" alt="home" class="image">
<h5 class="from-s">Home</h5>
</a>
</li>
<!--/Section menu: home-->
<!--Section menu: search-->
<li>
<a href="#" target="_blank" class="btn flex-row">
<img src="img/search.svg" alt="search" class="image">
<h5 class="from-s">Cerca</h5>
</a>
</li>
<!--/Section menu: search-->
<!--Section menu: library-->
<li>
<a href="#" target="_blank" class="btn flex-row">
<img src="img/libreria.svg" alt="library" class="image">
<h5 class="from-s">La tua libreria</h5>
</a>
</li>
<!--/Section menu: library-->
</ul>
<!-- /Section menu-->
<!-- Section playlist-->
<div class="playlist from-s flex-column">
<h4>playlist</h4>
<!--Bottom Add playlist-->
<div class="add">
<a href="#" target="_blank" class="btn flex-row">
<i class="fa-solid fa-square-plus"></i>
<h5>Crea playlist</h5>
</a>
</div>
<!--Bottom Add playlist-->
<!--List playlist-->
<ul class="list">
<li>
<a href="#" target="_blank" class="btn">
<h5>Nome Playlist</h5>
</a>
</li>
<li>
<a href="#" target="_blank" class="btn">
<h5>Nome Playlist</h5>
</a>
</li>
<li>
<a href="#" target="_blank" class="btn">
<h5>Nome Playlist</h5>
</a>
</li>
<li>
<a href="#" target="_blank" class="btn">
<h5>Nome Playlist</h5>
</a>
</li>
<li>
<a href="#" target="_blank" class="btn">
<h5>Nome Playlist</h5>
</a>
</li>
<li>
<a href="#" target="_blank" class="btn">
<h5>Nome Playlist</h5>
</a>
</li>
</ul>
<!--List playlist-->
</div>
<!-- /Section playlist-->
<!--Sidenav: top-->
<!--Sidenav: bottom-->
<!-- Section Account-->
<div class="account">
<!--Section Download-->
<div class="download">
<a href="#" target="_blank" class="btn flex-row">
<img src="img/download.svg" alt="download" class="image">
<h5 class="from-s">Installa App</h5>
</a>
</div>
<!--/Section Download-->
<hr class="from-s">
<!-- /Section User-image-->
<div class="user-image">
<a href="#" target="_blank" class="btn flex-row">
<img src="img/profile.svg" alt="profilo" class="image">
<h3 class="from-s">John Doe</h3>
</a>
</div>
<!-- /Section User-image-->
</div>
<!--/Section Account-->
<!--Sidenav: bottom-->
</nav>
<!--/Sidenav-->
<!--Music space-->
<div id="col-music" class="flex-column">
<!--Music space: top-->
<div class="upgrade">
<a href="#" target="_blank" class="btn">
<h4>Effettua l'upgrade</h4>
</a>
</div>
<!--/ Music space: top-->
<!-- Music space: bottom-->
<div class="music-box">
<!-- Section menu categorie-->
<div clas="categories">
<ul class="flex-row justify-center align-center wrap">
<!-- Categoria 1-->
<li>
<a href="#" target="_blank" class="btn">
<h4>In evidenza
<hr class="active">
</h4>
</a>
</li>
<!-- /Categoria 1-->
<!-- Categoria 2-->
<li>
<a href="#" target="_blank" class="btn">
<h4>Podcast</h4>
</a>
</li>
<!-- /Categoria 2-->
<!-- Categoria 3-->
<li>
<a href="#" target="_blank" class="btn">
<h4>Classifiche</h4>
</a>
</li>
<!-- /Categoria 3-->
<!-- Categoria 4-->
<li>
<a href="#" target="_blank" class="btn">
<h4>Generi e mood</h4>
</a>
</li>
<!-- /Categoria 4-->
<!-- Categoria 5-->
<li>
<a href="#" target="_blank" class="btn">
<h4>Nuove uscite</h4>
</a>
</li>
<!-- /Categoria 5-->
<!-- Categoria 6-->
<li>
<a href="#" target="_blank" class="btn">
<h4>Scopri</h4>
</a>
</li>
<!-- /Categoria 6-->
</ul>
</div>
<!-- /Section menu categorie-->
<!-- Section Recent played-->
<div id="recent-list">
<h2>Recently played</h2>
<div class="row flex-row wrap">
<div class="track flex-column align-center">
<div class="image-cover">
<img src="img/metal_lifting.jpg" alt="metallica_lifting" class="image">
<div class="overlay">
<a href="#" target="_blank" class="icon-overlay">
<i class="fa-regular fa-circle-play"></i>
</a>
</div>
</div>
<h3>Heavy Metal</h3>
<h5>Subtitle</h5>
</div>
<div class="track flex-column align-center">
<div class="image-cover">
<img src="img/stranger.jpeg" alt="stranger" class="image">
<div class="overlay">
<a href="#" target="_blank" class="icon-overlay">
<i class="fa-regular fa-circle-play"></i>
</a>
</div>
</div>
<h3>Stranger Things, Vol.1 (a Netflix Original Series Sountrack)</h3>
<h5>Kyle Dixon & Michael Stein</h5>
</div>
<div class="track flex-column align-center">
<div class="image-cover">
<img src="img/aquietplace.jpeg" alt="aquietplace" class="image">
<div class="overlay">
<a href="#" target="_blank" class="icon-overlay">
<i class="fa-regular fa-circle-play"></i>
</a>
</div>
</div>
<h3>A quiet place</h3>
<h5>Subtitle</h5>
</div>
<div class="track flex-column align-center">
<div class="image-cover">
<img src="img/split.jpeg" alt="split" class="image">
<div class="overlay">
<a href="#" target="_blank" class="icon-overlay">
<i class="fa-regular fa-circle-play"></i>
</a>
</div>
</div>
<h3>Split</h3>
<h5>Subtitle</h5>
</div>
<div class="track flex-column align-center">
<div class="image-cover">
<img src="img/cure.jpeg" alt="cure" class="image">
<div class="overlay">
<a href="#" target="_blank" class="icon-overlay">
<i class="fa-regular fa-circle-play"></i>
</a>
</div>
</div>
<h3>A cure for wellness</h3>
<h5>Subtitle</h5>
</div>
<div class="track flex-column align-center">
<div class="image-cover">
<img src="img/sinister.jpeg" alt="sinister" class="image">
<div class="overlay">
<a href="#" target="_blank" class="icon-overlay">
<i class="fa-regular fa-circle-play"></i>
</a>
</div>
</div>
<h3>Sinister</h3>
<h5>Subtitle</h5>
</div>
</div>
</div>
<!-- /Section Recent played-->
<!-- Section Creato per John Doe-->
<div id="ai-list">
<h2>Creato per John Doe</h2>
<h5>Più ascoltati, più accurati saranno i suggerimenti</h5>
<div class="row flex-row">
<div class="track flex-column align-center">
<div class="image-cover">
<img src="img/radar.jpeg" alt="radar" class="image">
<div class="overlay">
<a href="#" target="_blank" class="icon-overlay">
<i class="fa-regular fa-circle-play"></i>
</a>
</div>
</div>
<h3>Release Radar</h3>
</div>
<div class="track flex-column align-center">
<div class="image-cover">
<img src="img/mixdaily.jpeg" alt="mixdaily" class="image">
<div class="overlay">
<a href="#" target="_blank" class="icon-overlay">
<i class="fa-regular fa-circle-play"></i>
</a>
</div>
</div>
<h3>Daily Mix 1</h3>
</div>
</div>
</div>
<!-- /Section Creato per John Doe-->
<!-- Section Best Artist-->
<div id="bestartist-list">
<h2>Artisti più popolari</h2>
<h5>Più ascoltati, più accurati saranno i suggerimenti</h5>
<div class="row flex-row">
<div class="track flex-column align-center">
<div class="image-cover round-image">
<img src="img/youg.jpeg" alt="lanadelrey" class="image">
<div class="overlay">
<a href="#" target="_blank" class="icon-overlay">
<i class="fa-regular fa-circle-play"></i>
</a>
</div>
</div>
<h3>Lana del Rey</h3>
</div>
<div class="track flex-column align-center">
<div class="image-cover round-image">
<img src="img/einaudi.jpeg" alt="einaudi" class="image">
<div class="overlay">
<a href="#" target="_blank" class="icon-overlay">
<i class="fa-regular fa-circle-play"></i>
</a>
</div>
</div>
<h3>Enrico Einaudi</h3>
</div>
</div>
</div>
</div>
<!--/Music space: bottom-->
</div>
<!--/Music space-->
</main>
<!--/Web-app top-->
<!--Web-app: bottom-->
<footer id="footer-container" class="flex-row space-btw">
<!-- Section left-->
<div id="track" class="flex-row align-center">
<!-- col image -->
<img src="img/sinister.jpeg" alt="sinister" class="image">
<!-- /col image -->
<!--track-->
<a href="#" class="btn artist-track">
<h5>Sinister</h5>
<h6>Brano nome</h6>
</a>
<!--/track-->
<!--icone-->
<div class="icone-like-add flex-column">
<a href="#" class="btn">
<i class="fa-regular fa-heart"></i>
</a>
<a href="#" class="btn">
<i class="fa-regular fa-folder"></i>
</a>
</div>
<!--icone-->
</div>
<!-- /Section left-->
<!-- Section center-->
<div id="audio-system" class="flex-column space-around">
<!-- Row-top-->
<div class="system-top">
<ul class="flex-row align-center">
<!-- Icone shuffle-->
<li><i class="fa-solid fa-shuffle"></i></li>
<!-- /Icone shuffle-->
<!-- Icone Backward-->
<li><i class="fa-solid fa-backward-step"></i></li>
<!-- /Icone Backward-->
<!-- Icone Play-->
<li class="play"><i class="fa-regular fa-circle-play"></i></li>
<!-- /Icone Play-->
<!-- Icone Forward-->
<li><i class="fa-solid fa-forward-step"></i></li>
<!-- /Icone Forward-->
<!-- Icone Repeat-->
<li><i class="fa-solid fa-arrow-rotate-right"></i></li>
<!-- /Icone Repeat-->
</ul>
</div>
<!-- /Row-top-->
<!-- Row-bottom-->
<div class="system-bottom flex-row space-btw align-center">
<h6>0:25</h6>
<!-- Progress bar track-->
<div class="time-progress-bar"></div>
<!-- /Progress bar track-->
<h6>4:35</h6>
</div>
<!-- /Row-bottom-->
</div>
<!-- /Section center-->
<!-- Section right-->
<div id="volume" class="flex-row align-center">
<!-- Col icon-->
<div class="icone-volume flex-row">
<!-- Icone List-->
<i class="fa-solid fa-list"></i>
<!-- /Icone List-->
<!-- Icone Desktop-->
<i class="fa-solid fa-desktop"></i>
<!-- /Icone Desktop-->
<!-- Icone Volume-->
<i class="fa-solid fa-volume-high"></i>
<!-- /Icone Volume-->
</div>
<!-- /Col icon-->
<!-- Progress bar volume-->
<div class="volume-progress-bar"></div>
<!-- Progress bar volume-->
</div>
<!-- /Section right-->
</footer>
<!--/Web-app: bottom-->
</body>
</html>