-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (93 loc) · 2.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<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=Noto+Sans:wght@400;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/css/normalize.css" />
<link rel="stylesheet" href="/css/style.css" />
<title>Hits of the moment | Music player</title>
</head>
<body id="app-main">
<div class="content-container">
<main id="content-main">
<section id="playlist-info">
<img
src="/images/2098157264.jpeg"
alt="Playlist cover picture"
class="playlist-img"
/>
<div class="header">
<span>Playlist</span>
<h1 id="playlist-title" class="text-title">Hits of the moment</h1>
<div id="playlist-details">
<p class="author">By Fábio - Deezer Pop Editor</p>
<p class="details">2016 · 60 songs · 162 minutes</p>
</div>
</div>
</section>
<ul id="playlist-songs" class="song-list">
<li>
<p class="text-subtitle-1">Stay</p>
<p>The Kid Laroi</p>
</li>
<li>
<p class="text-subtitle-1">INDUSTRY BABY</p>
<p>Lil Nas X</p>
</li>
<li>
<p class="text-subtitle-1">Woman</p>
<p>Doja Cat</p>
</li>
<li>
<p class="text-subtitle-1">Bad Habits</p>
<p>Ed Sheeran</p>
</li>
<li>
<p class="text-subtitle-1">Way 2 Sexy</p>
<p>Drake</p>
</li>
<li>
<p class="text-subtitle-1">Pepas</p>
<p>Farruko</p>
</li>
<li>
<p class="text-subtitle-1">Take My Breath</p>
<p>The Weeknd</p>
</li>
<li>
<p class="text-subtitle-1">Happier Than Ever</p>
<p>Billie Eilish</p>
</li>
</ul>
</main>
<aside id="queue">
<p>Play next · 0 tracks</p>
<span class="empty-label">This queue is empty</span>
</aside>
</div>
<aside id="player">
<div class="content content-left">
<img src="/images/242430582.jpeg" alt="Stay" class="album-image" />
<div class="title-details">
<p class="text-subtitle-2">STAY</p>
<p class="text-body-2">The Kid Laroi</p>
</div>
</div>
<div class="content content-controls">
<img src="/icons/skip_previous.svg" alt="Skip Previous" />
<img src="/icons/pause.svg" alt="Pause" />
<img src="/icons/skip_next.svg" alt="Skip Next" />
</div>
<div class="content content-right">
<div id="deezer-sponsor">
<span class="text-overline">Powered by</span>
<img src="/images/deezer-logo.svg" alt="Deezer logo" />
</div>
</div>
</aside>
</body>
</html>