-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1004 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> Modern Music App UI - Artist Page - iphone x </title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans&display=swap" rel="stylesheet">
</head>
<body>
<!-- Making the Background -->
<div>
<div class="bg">
</div>
<!-- Making the Artist Section (Image + Text) -->
<img class="lauv" src="images/lauv-2018.png">
<div class="artist">
<h1> Lauv </h1>
<h2> 28,143,627 </h2>
<h2> MONTHLY LISTENERS </h2>
</div>
<!-- Placing the Play/Pause button -->
<div class="play_holder">
<img class="play" src="images/play_btn.png">
<h1> play all </h1>
</div>
<!-- Making the sections for all the song name list -->
<div class="songs">
<img src="images/songs.svg">
</div>
</div>
</body>
</html>