-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
183 lines (139 loc) · 6.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spotify Clone</title>
<link rel="stylesheet" href="style.css">
<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=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"
rel="stylesheet">
</head>
<body>
<nav>
<ul>
<li class="brand"><img src="logo.png" alt="Spotify">Spotify</li>
<li>Home</li>
<li>About</li>
</ul>
</nav>
<!-- Down panel for songs -->
<div class="container">
<div class="SongsList">
<h1>My Songs</h1>
<div class="Songs-queue">
<!-- Songs list -->
<div class="SongItem">
<img class="cover-image" alt="Cover Image">
<span class="spaces-1">SONG NAME HERE</span>
<span class="timestamp spaces-1 duration">SONG DURATION HERE</span>
<span class="spaces-1"><i class="fa-solid fa-2x songItemPlay fa-circle-play" id="1"></i></span>
</div>
<!-- End the songs list -->
<!-- Songs list -->
<div class="SongItem">
<img class="cover-image" alt="Cover Image">
<span class="spaces-1">SONG NAME HERE</span>
<span class="timestamp spaces-1 duration">SONG DURATION HERE</span>
<span class="spaces-1"><i class="fa-solid fa-2x songItemPlay fa-circle-play" id="2"></i></span>
</div>
<!-- End the songs list -->
<!-- Songs list -->
<div class="SongItem">
<img class="cover-image" alt="Cover Image">
<span class="spaces-1">SONG NAME HERE</span>
<span class="timestamp spaces-1 duration">SONG DURATION HERE</span>
<span class="spaces-1"><i class="fa-solid fa-2x songItemPlay fa-circle-play" id="3"></i></span>
</div>
<!-- End the songs list -->
<!-- Songs list -->
<div class="SongItem">
<img class="cover-image" alt="Cover Image">
<span class="spaces-1">SONG NAME HERE</span>
<span class="timestamp spaces-1 duration">SONG DURATION HERE</span>
<span class="spaces-1"><i class="fa-solid fa-2x songItemPlay fa-circle-play" id="4"></i></span>
</div>
<!-- End the songs list -->
<!-- Songs list -->
<div class="SongItem">
<img class="cover-image" alt="Cover Image">
<span class="spaces-1">SONG NAME HERE</span>
<span class="timestamp spaces-1 duration">SONG DURATION HERE</span>
<span class="spaces-1"><i class="fa-solid fa-2x songItemPlay fa-circle-play" id="5"></i></span>
</div>
<!-- End the songs list -->
<!-- Songs list -->
<div class="SongItem">
<img class="cover-image" alt="Cover Image">
<span class="spaces-1">SONG NAME HERE</span>
<span class="timestamp spaces-1 duration">SONG DURATION HERE</span>
<span class="spaces-1"><i class="fa-solid fa-2x songItemPlay fa-circle-play" id="6"></i></span>
</div>
<!-- End the songs list -->
<!-- Songs list -->
<div class="SongItem">
<img class="cover-image" alt="Cover Image">
<span class="spaces-1">SONG NAME HERE</span>
<span class="timestamp spaces-1 duration">SONG DURATION HERE</span>
<span class="spaces-1"><i class="fa-solid fa-2x songItemPlay fa-circle-play" id="7"></i></span>
</div>
<!-- End the songs list -->
<!-- Songs list -->
<div class="SongItem">
<img class="cover-image" alt="Cover Image">
<span class="spaces-1">SONG NAME HERE</span>
<span class="timestamp spaces-1 duration">SONG DURATION HERE</span>
<span class="spaces-1"><i class="fa-solid fa-2x songItemPlay fa-circle-play" id="8"></i></span>
</div>
<!-- End the songs list -->
<!-- Songs list -->
<div class="SongItem">
<img class="cover-image" alt="Cover Image">
<span class="spaces-1">SONG NAME HERE</span>
<span class="timestamp spaces-1 duration">SONG DURATION HERE</span>
<span class="spaces-1"><i class="fa-solid fa-2x songItemPlay fa-circle-play" id="9"></i></span>
</div>
<!-- End the songs list -->
<!-- Songs list -->
<div class="SongItem">
<img class="cover-image" alt="Cover Image">
<span class="spaces-1">SONG NAME HERE</span>
<span class="timestamp spaces-1 duration">SONG DURATION HERE</span>
<span class="spaces-1"><i class="fa-solid fa-2x songItemPlay fa-circle-play" id="10"></i></span>
</div>
<!-- End the songs list -->
</div>
</div>
<div class="SongsBanner"></div>
</div>
<!-- Part for the progress bar. -->
<div class="bottom">
<!-- progress bar -->
<input type="range" name="range" id="myProgressBar" min="0" value="0" max="100">
<!-- Fontsome icons -->
<div class="icons">
<i class="fa-solid fa-3x fa-backward-step" id="previous-button"></i>
<i class="fa-solid fa-3x fa-circle-play" id="masterPlay"></i>
<i class="fa-solid fa-3x fa-forward-step" id="next-button"></i>
</div>
<!-- Duration and total -->
<div class="duration-start">
0:00
</div>
<div class="duration-end">
00:00
</div>
<!-- Gif and song name -->
<div class="songInfo">
<span class="currentSong">
<!-- CURRENT PLAYING SONG HERE -->
</span>
</div>
</div>
<script src="https://kit.fontawesome.com/843250c58c.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
<!-- <script src="https://kit.fontawesome.com/843250c58c.js" crossorigin="anonymous"></script> -->
</html>