-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
175 lines (172 loc) · 5.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Spotify - Web Player: Music for everyone</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/utility.css" />
</head>
<body>
<div class="container flex bg-black">
<div class="left border">
<div class="close invert">
<img width="30px" src="img/close.svg" alt="" />
</div>
<div class="home bg-gray rounded m-1 p-1">
<div class="logo invert">
<img src="img/logo.svg" width="106px" height="43px" />
</div>
<ul>
<li>
<img
class="invert"
src="img/home.svg"
width="41px"
height="50px"
alt="home"
/>Home
</li>
<li>
<img
class="invert"
src="img/search.svg"
width="41px"
height="50px"
alt="search"
/>Search
</li>
</ul>
</div>
<div class="library bg-gray rounded m-1 p-1">
<div class="heading flex align-items">
<img
class="invert"
src="img/playlist.svg"
width="30px"
height="30px"
alt=""
/>
<h3>Your Library</h3>
</div>
<div class="songList">
<ul></ul>
</div>
<div class="footer">
<div>
<a href="https://www.spotify.com/in-en/legal/" id="">
<span>Legal</span>
</a>
</div>
<div>
<a href="https://www.spotify.com/in-en/privacy/" id="">
<span>Privacy Center</span>
</a>
</div>
<div>
<a
href="https://www.spotify.com/in-en/legal/privacy-policy/"
id=""
>
<span>Privacy Policy</span>
</a>
</div>
<div>
<a
href="https://www.spotify.com/in-en/legal/cookies-policy/"
id=""
>
<span>Cookies</span>
</a>
</div>
<div>
<a
href="https://www.spotify.com/in-en/legal/privacy-policy/#s3"
id=""
>
<span>About Ads</span>
</a>
</div>
<div>
<a href="https://www.spotify.com/in-en/accessibility/" id="">
<span>Accessibility</span>
</a>
</div>
</div>
</div>
</div>
<div class="right border">
<div class="header p-1 rounded flex">
<div class="nav">
<div class="hamburgerContainer">
<img class="invert hamburger" src="img/hamburger.svg" alt="" />
<svg
class="invert"
xmlns="http://www.w3.org/2000/svg"
width="34"
height="34"
viewBox="0 0 24 24"
fill="none"
>
<path
d="M15 6C15 6 9.00001 10.4189 9 12C8.99999 13.5812 15 18 15 18"
stroke="#000000"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
<svg
class="invert"
xmlns="http://www.w3.org/2000/svg"
width="34"
height="34"
viewBox="0 0 24 24"
fill="none"
>
<path
d="M9.00005 6C9.00005 6 15 10.4189 15 12C15 13.5812 9 18 9 18"
stroke="#000000"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
/>
</svg>
</div>
</div>
<div class="buttons">
<button class="btn btn-1">Sign up</button>
<button class="btn btn-2">Log in</button>
</div>
</div>
<div class="spotify-playlists">
<h2>Spotify Playlists</h2>
<div class="cardContainer"></div>
<div class="playbar">
<div class="seekbar">
<div class="circle"></div>
</div>
<div class="abovebar">
<div class="songinfo"></div>
<div class="songbuttons">
<img id="previous" src="img/prev.svg" alt="" />
<img id="play" src="img/play.svg" alt="" />
<img id="next" src="img/next.svg" alt="" />
</div>
<div class="abovebarright">
<div class="songtime"></div>
<div class="volume">
<img class="invert" src="img/volume.svg" alt="" />
<div class="range">
<input type="range" name="volume" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>