-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (96 loc) · 4.51 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
<!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</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="utility.css">
</head>
<body>
<div class="container flex bg-black">
<div class="left bg-black ">
<img class="close" src="img/cross.svg" alt="">
<div class="home bg-grey rounded m-1 p-1">
<div class="logo"><img class="invert" src="img/logo.png" alt="logo"></div>
<ul>
<li><img class="invert" src="img/home.svg" alt="home">Home</li>
<li><img class="invert" src="img/search.svg" alt="search">Search</li>
</ul>
</div>
<div class="library bg-grey rounded m-1 p-1">
<div class="heading ">
<img class="invert" src="img/playlist.svg" alt="playlist">
<h2>Your Library</h2>
</div>
<div class="songList">
<ul>
</ul>
</div>
<div class="footer">
<a href="https://www.spotify.com/in-en/legal/">Legal</a>
<a href="https://www.spotify.com/in-en/safetyandprivacy/">Safety & Privacy Center</a>
<a href="https://www.spotify.com/in-en/legal/privacy-policy/">Privacy Policy</a>
<a href="https://www.spotify.com/in-en/legal/cookies-policy/">Cookies</a>
<a href="https://www.spotify.com/in-en/legal/privacy-policy/#s3">About Ads</a>
<a href="https://www.spotify.com/in-en/accessibility/">Accessibility</a>
</div>
</div>
</div>
<div class="right bg-grey">
<div class="header rounded">
<div class="nav">
<img class="hamburger" src="img/hamburger.svg" alt="">
<div class="pageChange">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"
color="#ffffff" fill="none">
<path d="M15 6C15 6 9.00001 10.4189 9 12C8.99999 13.5812 15 18 15 18" stroke="currentColor"
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="#ffffff" fill="none">
<path d="M9.00005 6C9.00005 6 15 10.4189 15 12C15 13.5812 9 18 9 18" stroke="currentColor"
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="spotifyPlaylist">
<h1>Spotify Playlist</h1>
<div class="cardContainer">
</div>
<div class="playbar">
<div class="seekbar">
<div class="progress"></div>
<div class="circle"></div>
</div>
<div class="abovebar">
<div class="songinfo">
</div>
<div class="songButtons">
<img id="previous" src="img/prevsong.svg" alt="">
<img id="play" src="img/play.svg" alt="">
<img id="next" src="img/nextsong.svg" alt="">
</div>
<div class="timevol">
<div class="songtime">
</div>
<div class="volume">
<img src="img/volume.svg" alt="">
<div class="range">
<input type="range" name="volume" id="">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>