-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (77 loc) · 3.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spotify- Your favorite music is here</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<ul>
<li class="brand">
<img src="logo.jpg" alt="Spotify">
Spotify
</li>
<li>Home</li>
<li>About</li>
</ul>
</nav>
<div class="container">
<div class="SongList">
</div>
<h1>Best of NCS- No Copyright Sounds</h1>
<div class="songItemcontainer">
<div class="songItem">
<img src="cover1.jpg" alt="1">
<span>Let me Love You</span>
<span class="songplaylist"><span class="timestamp">05:34<i class="far fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="cover1.jpg" alt="1">
<span>Let me Love You</span>
<span class="songplaylist"><span class="timestamp">05:34<i class="far fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="cover1.jpg" alt="1">
<span>Let me Love You</span>
<span class="songplaylist"><span class="timestamp">05:34<i class="far fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="cover1.jpg" alt="1">
<span>Let me Love You</span>
<span class="songplaylist"><span class="timestamp">05:34<i class="far fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="cover1.jpg" alt="1">
<span>Let me Love You</span>
<span class="songplaylist"><span class="timestamp">05:34<i class="far fa-play-circle"></i></span></span>
</div>
<div class="songItem">
<img src="cover1.jpg" alt="1">
<span>Let me Love You</span>
<span class="songplaylist"><span class="timestamp">05:34<i class="far fa-play-circle"></i></span></span>
</div>
</div>
<div class="SongBanner"></div>
</div>
<div class="bottom">
<input type="range" name="range" id="MyprogressBar" min="0" max="100">
<div class="icons">
<!-- <!...fontawesome icons...> -->
<i class="fas fa-3x fa-fast-backward"></i>
<i class="far fa-3x fa-play-circle"></i>
<i class="fas fa-3x fa-fast-forward"></i>
</div>
<div class="songinfo">
<video width= 60px height = 20px >
<source src="gif.mp4" width="42px" type="video/mp4" >
</video>
<p> Let Me Love You- Justein Beiber</p>
<!-- <source >Let Me Love You- Justein Beiber -->
</div>
</div>
<script src="https://kit.fontawesome.com/097bc7fc4e.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>