-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (80 loc) · 3.88 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
<!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>
<!--Parent Container which hold left and right-->
<div class="container flex">
<div class="left ">
<div class="home bg-grey round m-1 p-1">
<span class="close invert"><img src="./images/close.svg" alt="close.svg"></span>
<ul>
<li><img class="invert" src="./images/logo.svg" alt="Spotify-logo"></li>
<li><img class="invert" src="./images/home.svg" alt="Home">Home</li>
<li><img class="invert" src="./images/search.svg" alt="Search">Search</li>
</ul>
</div>
<div class="library bg-grey round m-1 p-1">
<div class="heading">
<img class="invert" src="./images/library.svg" alt="library">
<h2>Your library</h2>
</div>
<div class="songlist ">
<ul>
<!-- Dynamic song list from album through js -->
</ul>
</div>
<div class="footer">
<a href="https://www.spotify.com/in-en/legal/"><span>Legal</span></a>
<a href="https://www.spotify.com/in-en/safetyandprivacy/"><span>Safety & Privacy Center</span></a>
<a href="https://www.spotify.com/in-en/legal/privacy-policy/"><span>Privacy Policy</span></a>
<a href="https://www.spotify.com/in-en/legal/cookies-policy/"><span>Cookies</span></a>
<a href="https://www.spotify.com/in-en/legal/privacy-policy/#s3"><span>About Ads</span></a>
<a href="https://www.spotify.com/in-en/accessibility/"><span>Accessibility</span></a>
</div>
</div>
</div>
<div class="right bg-grey m-1 ">
<div class="header">
<div class="nav">
<img class="display"src="./images/hamburger.svg" alt="hamburger">
<img src="./images/leftarrow.svg" alt="leftarrow">
<img src="./images/rightarrow.svg" alt="rightarrow">
</div>
<div class="button">
<button class="signUp-btn">Sign up</button>
<button class="login-btn">Log in</button>
</div>
</div>
<div class="spotifyPlaylist">
<h1>Spotify Playlists</h1>
<div class="cardContainer scrollbar-container flex items-center">
<!-- dynamic album from folder through js -->
</div>
</div>
<div class="playBar">
<div class="seekbar">
<input type="range" min="0" max="100" value="0" step="0.01" class="seekbar-input">
<img id="volume" src="./images/volume.svg" alt="volume-btn">
<input type="range" min="0" max="100" value="0" step="0.01" class="volume-slider">
</div>
<div class="sidebar">
<div class="song-details">
</div>
<div class="songsbutton invert">
<img id="prev" src="./images/prev.svg" alt="prev-song-btn">
<img id="cur" src="./images/cur_play.svg" alt="play-song-btn">
<img id="next" src="./images/next.svg" alt="next-song-btn">
</div>
<div class="song-timing ">
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>