-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (76 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ROOH - Music For Your Soul</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<ul>
<li class="brand"><img src="logo.gif" alt="Rooh" /> Rooh</li>
<li>
<a
style="color: rgb(0, 255, 255); text-decoration: wavy; font-size: x-large; font-weight: bolder;"
>Home</a
>
</li>
<li>
<a
style="color: rgb(0, 255, 255); text-decoration: wavy; font-size: x-large; font-weight: bolder;"
href="about.html"
>About</a
>
</li>
</ul>
</nav>
<div class="container">
<div class="songList">
<h1>FAVORITES</h1>
<div class="songItemContainer">
<!-- Dynamic Song List -->
<div class="songItem">
<img src="placeholder.jpg" alt="Cover" />
<span class="songName">Song Name</span>
<span class="songlistplay">
<span class="timestamp">03:32
<i id="0" class="far songItemPlay fa-play-circle"></i>
</span>
</span>
</div>
<!-- Add more song items dynamically -->
</div>
</div>
<div class="songBanner"></div>
</div>
<div class="bottom">
<!-- Progress Bar -->
<input
type="range"
name="range"
id="myProgressBar"
min="0"
value="0"
max="100"
/>
<div class="icons">
<!-- FontAwesome Controls -->
<i class="fas fa-3x fa-step-backward" id="previous"></i>
<i class="far fa-3x fa-play-circle" id="masterPlay"></i>
<i class="fas fa-3x fa-step-forward" id="next"></i>
</div>
<div class="songInfo">
<!-- Playing GIF and Current Song Info -->
<img src="circle playing.gif" width="42px" alt="Playing GIF" id="gif" />
<span id="masterSongName">UNKNOWN TRACK</span>
</div>
</div>
<script src="script.js"></script>
<script
src="https://kit.fontawesome.com/26504e4a1f.js"
crossorigin="anonymous"
></script>
</body>
</html>