-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (124 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
<!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="icon" href="https://open.spotifycdn.com/cdn/images/favicon.0f31d2ea.ico">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="utility.css">
</head>
<body>
<div class="container flex bg-black">
<div class="left">
<div class="close">
<img class="invert" src="close.svg" alt="close">
</div>
<div class="home bg-gray rounded m-1 p-1">
<div class="logo">
<img width="100px" class="invert" src="logo.svg" alt="logo">
</div>
<ul>
<li>
<img class="invert" src="home.svg" alt="home">Home
</li>
<li>
<img class="invert" src="search.svg" alt="serach">Search
</li>
</ul>
</div>
<div class="library bg-gray rounded m-1 p-1">
<div class="heading">
<img class="invert" src="playlist.svg" alt="playlist">
<h2>
Your Library
</h2>
</div>
<div class="songlist">
<ul>
</ul>
</div>
<div class="footer">
<div>
<a href="https://www.spotify.com/in-en/legal/">
<span>Legal</span>
</a>
</div>
<div>
<a href="https://www.spotify.com/in-en/safetyandprivacy/">
<span>Safety & Privacy Center</span>
</a>
</div>
<div>
<a href="https://www.spotify.com/in-en/legal/privacy-policy/">
<span>Privacy Policy</span>
</a>
</div>
<div>
<a href="https://www.spotify.com/in-en/legal/cookies-policy/">
<span>Cookies</span>
</a>
</div>
<div>
<a href="https://www.spotify.com/in-en/legal/privacy-policy/#s3">
<span>About Ads</span>
</a>
</div>
<div>
<a href="https://www.spotify.com/in-en/accessibility/">
<span>Accessibility</span>
</a>
</div>
</div>
</div>
</div>
<div class="right bg-gray rounded">
<div class="header">
<div class="nav">
<div class="menucontainer">
<img class="menu invert" src="menu.svg" alt="menu">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="#000000" fill="none">
<path d="M15 6C15 6 9.00001 10.4189 9 12C8.99999 13.5812 15 18 15 18" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="#000000" fill="none">
<path d="M9.00005 6C9.00005 6 15 10.4189 15 12C15 13.5812 9 18 9 18" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div>
</div>
<div class="buttons">
<button class="signupbtn">Sign up</button>
<button class="loginbtn">Log in</button>
</div>
</div>
<div class="spotifyPlaylists">
<h1>Spotify Playlists</h1>
<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="pre" src="prevsong.svg" alt="previous" style="width: 25px;">
<img id="curr" src="play.svg" alt="play" style="width: 25px;">
<img id="nex" src="nextsong.svg" alt="next" style="width: 25px;">
</div>
<div class="timevol">
<div class="volume">
<img src="volume.svg" alt="volume" width="20px">
<div class="range">
<input type="range" name="volume">
</div>
</div>
<div class="songtime"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>