-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (113 loc) · 6 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
<!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="style.css">
<link rel="stylesheet" href="utility.css">
<!-- <script src="https://unpkg.com/music-metadata-browser/dist/music-metadata-browser.min.js"></script> -->
</head>
<body>
<!-- <img src="logo.svg" alt="logo"> -->
<div class="container flex">
<div class="left border">
<div class="home bggray rounded p1 m1">
<div class="logo invert"><img src="logo.svg" alt="spotify"></div>
<ul>
<li class="flex cursorp">
<img class="cursorp invert" src="home.svg" alt="home">Home
</li>
<li class="flex cursorp">
<img class="invert cursorp" src="search.svg" alt="search">Search
</li>
</ul>
</div>
<div class="library bggray m1 p1 rounded">
<div class="libhead flex p1">
<img class="invert" src="library.svg" alt="Library" width="25px">
Your Library
</div>
<div class="list m1">
<ul>
</ul>
</div>
<div class="footer">
<div class="flex">
<div><a href="https://www.spotify.com/in-en/legal/" data-encore-id="textLink"><span
data-encore-id="type">Legal</span></a></div>
<div><a href="https://www.spotify.com/in-en/safetyandprivacy/" data-encore-id="textLink"><span
data-encore-id="type">Safety & Privacy Center</span></a></div>
</div>
<div class="flex"><a href="https://www.spotify.com/in-en/legal/privacy-policy/"
data-encore-id="textLink"><span data-encore-id="type">Privacy Policy</span></a>
<div><a href="https://www.spotify.com/in-en/legal/cookies-policy/"
data-encore-id="textLink"><span data-encore-id="type">Cookies</span></a></div>
<div><a href="https://www.spotify.com/in-en/legal/privacy-policy/#s3"
data-encore-id="textLink"><span data-encore-id="type">About Ads</span></a></div>
</div>
<div class="flex">
<div><a href="https://www.spotify.com/in-en/accessibility/" data-encore-id="textLink"><span
data-encore-id="type">Accessibility</span></a></div>
</div>
<div class="flex"><a href="https://www.spotify.com/legal/cookies-policy/" target="_blank"
rel="noopener"><span data-encore-id="text">Cookies</span></a></div>
</div>
</div>
</div>
<div class="right border bggray m1 p1 rounded ">
<div class="header flex">
<div>
<svg class="cursorp" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="white"
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 class="cursorp" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" color="white"
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 class="buttons">
<button class="signup">Sign up</button>
<button class="login">Log in</button>
</div>
</div>
<div class="playlist">
<h1>Spotify Playlist</h1>
<div class="cardcontainer m1 p1 flex rounded">
<div class="card">
<div class="play"><svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"
viewBox="0 0 100 100" id="play-button">
<circle cx="50" cy="50" r="50" fill="#1ed760" />
<polygon points="41.6,32.9 67.2,50 41.6,67.1" fill="black" />
</svg>
</div>
<img src="https://i.scdn.co/image/ab67706f0000000255be59b7be2929112e7ac927" alt="songimg">
<h2>lofi beats</h2>
<p>chill beats, lofi vibes, new tracks every...</p>
</div>
<div class="card">
<img src="https://i.scdn.co/image/ab67706f0000000255be59b7be2929112e7ac927" alt="songimg">
<h2>lofi beats</h2>
<p>chill beats, lofi vibes, new tracks every...</p>
</div>
</div>
<div class="playbar">
<div class="seekbar">
<div class="circle"></div>
</div>
<div class="songinfo"></div>
<div class="playbtns flex">
<img class="cursorp" src="previous.svg" alt="prev">
<img class="invert cursorp"src="play.svg" alt="play" width="39px">
<img class="cursorp" src="next.svg" alt="next">
</div>
<div class="time"></div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>