-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
166 lines (135 loc) · 5.93 KB
/
index.html
File metadata and controls
166 lines (135 loc) · 5.93 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="utility.css" />
<link rel="icon" href="img/logo.png">
<title>Music Mizz</title>
</head>
<body>
<div class="container flex bgblack">
<div class="left">
<div class="close">
<img class="invert" src="img/close.svg" alt="close">
</div>
<div class="home rounded m1 p1 fontrobo">
<div class="logo">
<h3>MIZZ</h3>
</div>
<ul>
<li><img id="home" src="img/home.svg" class="invert" alt="home" />Home</li>
</ul>
</div>
<div class="library rounded m1 fontrobo">
<div class="heading flex">
<img class="invert" src="img/playlist.svg" alt="list" />
<h2>your library</h2>
</div>
<div class="songlist">
<ul>
<li><img class="invert" src="img/music.svg" alt="music">
<div class="info">
<div>Song Name</div>
<div>Song Artist</div>
</div>
<div class="playnow">
<span>Play Now</span>
<img class="invert" src="img/play.svg" alt="play">
</div>
</li>
</ul>
</div>
<div class="footer">
<div>
<a href="index.html "><span>Legal</span></a>
</div>
<div>
<a href="index.html "><span>Privacy Center</span></a>
</div>
<div>
<a href="index.html "><span>Privacy Policy</span></a>
</div>
<div>
<a href="index.html "><span>Cookies</span></a>
</div>
<div>
<a href="index.html "><span>About Ads</span></a>
</div>
<div>
<a href="index.html"><span>Accessibility</span></a>
</div>
</div>
<P style="font-weight: bolder; margin-top: 0vh;">Powered by Haseeb-code1</P>
</div>
</div>
<div class="right ">
<div class="header ">
<div class="nav">
<div class="hamburgercont">
<div class="hamburger">
<img class="invert" src="img/hamburger.svg" alt="hamburger">
</div>
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path
d="M15 6L9.70711 11.2929C9.37377 11.6262 9.20711 11.7929 9.20711 12C9.20711 12.2071 9.37377 12.3738 9.70711 12.7071L15 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.2929 12.7071C14.6262 12.3738 14.7929 12.2071 14.7929 12C14.7929 11.7929 14.6262 11.6262 14.2929 11.2929L9 6"
stroke="#ffffff" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" />
</svg>
</div></div>
<div class="button">
<button class="signupbtn">Sign up</button>
<button class="loginbtn">Log in</button>
</div>
</div>
<div class="spotifyplaylist">
<h1> Mizz Playlists</h1>
<div class="cardContainer">
<div data-folder="ncs" class="card ">
<div class="play">
<img src="img/play2.svg" alt="play">
</div>
<img src="img/cover.jpg" alt="mood">
<h2>Happy Hits</h2>
<p>Hits to boost your mood and fill you with happiness!</p>
</div>
<div data-folder="cs" class="card ">
<div class="play">
<img src="img/play2.svg" alt="play">
</div>
<img src="img/cover.jpg" alt="mood">
<h2>Happy Hits</h2>
<p>Hits to boost your mood and fill you with happiness!</p>
</div>
</div>
<div class="playbar">
<div class="seekbar">
<div class="circle">
</div>
</div>
<div class="player">
<div class="songinfo"></div>
<div.></div>
<div class="songbtn invert">
<img id="previous" src="img/prevsong.svg" alt="prev">
<img id="play" src="img/play.svg" alt="play">
<img id="next" src="img/nextsong.svg" alt="next">
</div>
<div class="songdurationvolume"> <div class="songtime">
</div>
<div class="volume invert">
<img src="img/volume.svg" alt="volume">
<input type="range" name="volume" id="volume">
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>