-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (107 loc) · 5.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="utility.css">
<title>Spotify</title>
</head>
<body>
<div class="container flex bg-black">
<!-- Sidebar -->
<div id="left" class="left">
<div class="close">
<img src="close.svg" alt="Close" class="invert">
</div>
<div class="home bg-grey rounded m-1 p-1">
<div class="logo">
<img width="110" class="invert" src="logo.svg" alt="Logo">
</div>
<ul>
<li><img class="invert" src="home.svg" alt="Home"> Home</li>
<li>
<span>Search</span>
<form class="search" action="">
<input type="text" name="search" id="search" placeholder="Search">
<button class="btn" type="submit">
<img class="button" src="search.svg" alt="Search">
</button>
</form>
</li>
</ul>
</div>
<div class="library bg-grey rounded m-1 p-1">
<div class="heading">
<img src="playlist.svg" alt="Playlist" class="invert">
<h2>Library</h2>
</div>
<div class="songlist">
<ul>
<!-- Song list items -->
</ul>
</div>
<div class="footer">
<div>
<div><a href="https://www.spotify.com/jp/legal/"><span>Legal</span></a></div>
<div><a href="https://www.spotify.com/jp/privacy/"><span>Privacy Center</span></a></div>
<div><a href="https://www.spotify.com/jp/legal/privacy-policy/"><span>Privacy Policy</span></a></div>
<div><a href="https://www.spotify.com/jp/legal/cookies-policy/"><span>Cookies</span></a></div>
<div><a href="https://www.spotify.com/jp/legal/privacy-policy/#s3"><span>About Ads</span></a></div>
<div><a href="https://www.spotify.com/jp/accessibility/"><span>Accessibility</span></a></div>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div id="right" class="right bg-grey rounded">
<div class="header">
<div class="nav">
<div class="hamburgercontainer">
<img class="hamburger invert" src="hamburger.svg" alt="Menu">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15 6L9.707 11.293C9.374 11.626 9.207 11.793 9.207 12C9.207 12.207 9.374 12.374 9.707 12.707L15 18" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 18L14.293 12.707C14.626 12.374 14.793 12.207 14.793 12C14.793 11.793 14.626 11.626 14.293 11.293L9 6" stroke="#ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
<div class="buttons">
<button class="signinbtn">Sign up</button>
<button class="loginbtn">Login</button>
</div>
</div>
<div class="spotifyplaylist">
<h1>Spotify Playlist</h1>
<div class="cardcontainer">
<div class="playbar">
<div class="seekbar">
<div class="color"></div>
<div class="circle"></div>
</div>
<div class="abovebar">
<div class="songinfo"></div>
<div class="songbutton">
<img id="previous" src="prevsong.svg" alt="Previous">
<img id="play" src="play.svg" alt="Play">
<img id="next" src="nextsong.svg" alt="Next">
</div>
<div class="timevol">
<div class="songtime"></div>
<div class="volume">
<img width="25" src="volume.svg" alt="Volume">
<div class="range">
<input type="range" name="volume" id="volume">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>