-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (83 loc) · 3.12 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GrooveBox- Your own Music house</title>
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/ece7959ef3.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div id="particles-js">
<div class="main-cont">
<nav>
<ul>
<li><img src="logo.png" alt="logo-image" /></li>
<li id="App-name">GrooveBox</li>
<li class="nav-li animate">Home</li>
<li class="nav-li animate">About</li>
</ul>
</nav>
<div class="main-container">
<p>Where music meets you!</p>
<div class="chotu-container">
<div class="song-list">
<div class="temp">
<span><img src="photos/charlie-puth.jpg" alt="" /></span>
<div class="songs animate">One call away - By charlie puth</div>
<span class="duration">03:12</span>
</div>
<div class="temp">
<span><img src="photos/ashiqui-2.jfif" alt="" /></span>
<div class="songs animate">Chahun main ya na - Ashiqui 2</div>
<span class="duration">05:04</span>
</div>
<div class="temp">
<span><img src="photos/mercy.jfif" alt="" /></span>
<div class="songs animate">Mercy - By Badshah</div>
<span class="duration">02:42</span>
</div>
<div class="temp">
<span><img src="photos/malhari.jfif" alt="" /></span>
<div class="songs animate">Malhari - Bajirao Mastani</div>
<span class="duration">04:04</span>
</div>
<div class="temp">
<span><img src="photos/act-my-age.jfif" alt="" /></span>
<div class="songs animate">Act my age - By One direction</div>
<span class="duration">03:18</span>
</div>
<div class="temp">
<span><img src="photos/pi-jaun.jfif" alt="" /></span>
<div class="songs animate">Pi jaun - Farhan Saeed</div>
<span class="duration">04:43</span>
</div>
</div>
</div>
</div>
<div class="footer">
<input type="range" id="seeker" alt="ProgressBar" min="0" max="100" />
<div class="footer-main">
<div class="start">
00:00
</div>
<div class="current"></div>
<div class="icons">
<i class="play-backward fa-solid fa-backward-fast fa-3x"></i>
<i class="playbtn fa-solid fa-circle-play fa-3x"></i>
<i class="play-forward fa-solid fa-forward-fast fa-3x"></i>
</div>
<div class="music-dur">
03:45
</div>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
<script src="particles.js"></script>
<script src="app.js"></script>
</body>
</html>