-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
102 lines (95 loc) · 4.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spotify Clone - Arnav Nagpurkar</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/utility.css">
<link rel="stylesheet" href="css/scrollbar.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta name="description" content="Explore a responsive Spotify clone with playlists, playback controls, and a user-friendly UI. Download songs for free, contribute on GitHub, and customize playlists effortlessly. Developed by Arnav Nagpurkar.">
</head>
<body>
<div class="container bg-black">
<div class="left">
<div class="close">
<button class="btn"><img class="invert" src="images/close.svg" alt="close"></button>
</div>
<div class="home bg-grey rounded m-1">
<div class="logo">
<a href="/"><img class="invert" src="images/logo.svg" alt=""></a>
</div>
<ul>
<li><a href="/"><img class="invert" src="images/home.svg" alt="home">Home</a></li>
<li><a class="inprogress"><img class="invert" src="images/search.svg" alt="search">Search</a></li>
</ul>
</div>
<div class="library bg-grey rounded m-1 p-1">
<div class="heading">
<img class="invert" src="images/playlist.svg" alt="Playlist Icon">
<h2>Your Library</h2>
</div>
<div class="song-list">
<ul></ul>
</div>
<div class="footer">
<div><a href="https://www.spotify.com/jp/legal/" target="_blank"><span>Legal</span></a></div>
<div><a href="https://www.spotify.com/jp/privacy/" target="_blank"><span>Privacy Center</span></a>
</div>
<div><a href="https://www.spotify.com/jp/legal/privacy-policy/" target="_blank"><span>Privacy Policy</span></a>
</div>
<div><a href="https://www.spotify.com/jp/legal/cookies-policy/" target="_blank"><span>Cookies</span></a></div>
<div><a href="https://www.spotify.com/jp/legal/privacy-policy/#s3" target="_blank"><span>About Ads</span></a>
</div>
<div><a href="https://www.spotify.com/jp/accessibility/" target="_blank"><span>Accessibility</span></a></div>
</div>
</div>
</div>
<div class="right bg-grey rounded">
<div class="header">
<div class="nav">
<button class="btn hamburger"><img class="invert" src="images/hamburger.svg" alt="hamburger"></button>
<button class="btn changebtns-nav"><img src="images/left.svg" alt="left"></button>
<button class="btn changebtns-nav"><img src="images/right.svg" alt="right"></button>
</div>
<div class="buttons">
<button class="signupbtn inprogress">Sign up</button>
<button class="loginbtn inprogress">Log in</button>
</div>
</div>
<div class="spotify-playlists">
<h1>Spotify Playlists</h1>
<div class="card-container"></div>
<div class="playbar">
<div class="seekbar">
<div class="circle"></div>
</div>
<div class="abovebar">
<div class="songinfo"></div>
<div class="songbuttons">
<img id="previous" src="images/prevsong.svg" alt="previous">
<img id="play" src="images/play.svg" alt="play">
<img id="next" src="images/nextsong.svg" alt="next">
</div>
<div class="time-volume">
<div class="download">
<span>Download</span>
<img src="images/download.svg" alt="download">
</div>
<div class="songtime"></div>
<div class="volume">
<img src="images/volume-high.svg" alt="volume">
<div class="range">
<input type="range" name="volume" value="100">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>