-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
135 lines (113 loc) · 5.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0,maximum-scale=1">
<title>Spotify - Web Player: Music for everyone</title>
<link rel="icon" type="image/x-icon" href="img/favicon.ico">
<link rel="stylesheet" href="style.css" class="rel">
<link rel="stylesheet" href="utility.css">
</head>
<body>
<div class="container bg-color">
<div class="left">
<div class="close">
<img src="img/close.svg" class="close">
</div>
<div class="home bg1-color border-radius">
<img src="img/logo.svg" alt="home" class="logo invert">
<ul>
<li class="flex align-center"><img src="img/home.svg" alt="home" class="invert">Home</li>
<li class="flex align-center"><img src="img/search.svg" alt="home" class="invert">Search</li>
</ul>
</div>
<div class="library bg1-color border-radius">
<div class="your flex align-center"><img src="img/library.svg" alt="library" class="libraryimg invert"><span
id="yli">
Your Library</span>
</div>
<div class="songlist">
<ul>
</ul>
</div>
<div class="footer">
<a href="https://www.spotify.com/in-en/legal/" class="gap">
<span>Legal</span>
</a>
<a href="https://www.spotify.com/in-en/safetyandprivacy/">
<span>Safety & Privacy Center</span>
</a>
<br>
<a href="https://www.spotify.com/in-en/legal/privacy-policy/" class="gap">
<span>Privacy Policy</span>
</a>
<a href="https://www.spotify.com/in-en/legal/cookies-policy/">
<span>Cookies</span>
</a>
<br>
<a href="https://www.spotify.com/in-en/legal/privacy-policy/#s3" class="gap">
<span>About Ads</span>
</a>
<a href="https://www.spotify.com/in-en/accessibility/">
<span>Accessibility</span>
</a>
<br>
<a draggable="false" href="https://www.spotify.com/legal/cookies-policy/" target="_blank"
rel="noopener">
<span>Cookies</span>
</a>
</div>
</div>
</div>
<div class="right bg1-color border-radius">
<div class="header">
<div class="iconcontainer">
<div class="nav">
<img src="img/hamburger.svg" class="hamburger">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"
class="invert"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L77.3 256 246.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" class="invert"
viewBox="0 0 320 512"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.-->
<path
d="M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z" />
</svg>
</div>
</div>
<div class="buttons">
<button class="signup">Sign up</button>
<button class="login">Login</button>
</div>
</div>
<div class="spotifyPlaylist">
<h2 id="splaylist" style="padding:15px">Spotify Playlists</h2>
<div class="cardContainer">
</div>
<div class="playbarcontainer">
<div class="playbar">
<div class="flexbox">
<div class="songinfo"></div>
<div class="playbuttons">
<img id="previous" src="img/backward.svg" class="playbutton one invert" alt="backward">
<img id="play" src="img/play.svg" class="playbutton invert" alt="play">
<img id="next" src="img/forward.svg" class="playbutton one invert" alt="forward">
</div>
<div class="timevol">
<div class="songtime"></div>
<div class="volume">
<img src="img/volume.svg" alt="volume" class="volimg">
<input type="range" class="range" style="accent-color:rgb(252, 116, 37)">
</div>
</div>
</div>
<div class="seekbar"></div>
<div class="circle"></div>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>