-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
145 lines (144 loc) · 4.17 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
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
<!-- first project in js html css // 18 june -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=, initial-scale=1.0" />
<link rel="icon" type="image" href="melodyverse.png" />
<title>MelodyVerse</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<ul>
<li class="brand">
<img src="melodyverse.png" alt="MelodyVerse" />MelodyVerse
</li>
<li>Home</li>
<li>About</li>
</ul>
</nav>
<div class="container">
<div class="songList">
<h1>Best Of 2022</h1>
<div class="SongItemContainer">
<!-- 1 -->
<div id="0" class="songItem">
<img alt="1" />
<span class="SongName">Joel</span>
<span class="songlistplay">
<span class="timestamp"
>2:51
<i
class="fa-solid songItemPlay fa-play"
style="color: #ffffff"
></i>
</span>
</span>
</div>
<!-- 2 -->
<div id="1" class="songItem">
<img alt="1" />
<span class="SongName">Joel</span>
<span class="songlistplay">
<span class="timestamp"
>2:51
<i
class="fa-solid songItemPlay fa-play"
style="color: #ffffff"
></i>
</span>
</span>
</div>
<!-- 3 -->
<div id="2" class="songItem">
<img alt="1" />
<span class="SongName">Joel</span>
<span class="songlistplay">
<span class="timestamp"
>2:51
<i
class="fa-solid songItemPlay fa-play"
style="color: #ffffff"
></i>
</span>
</span>
</div>
<!-- 4 -->
<div id="3" class="songItem">
<img alt="1" />
<span class="SongName">Joel</span>
<span class="songlistplay">
<span class="timestamp"
>2:51
<i
class="fa-solid songItemPlay fa-play"
style="color: #ffffff"
></i>
</span>
</span>
</div>
<!-- 5 -->
<div id="4" class="songItem">
<img alt="1" />
<span class="SongName">Joel</span>
<span class="songlistplay">
<span class="timestamp"
>2:51
<i
class="fa-solid songItemPlay fa-play"
style="color: #ffffff"
></i>
</span>
</span>
</div>
<!-- 6 -->
<div id="5" class="songItem">
<img alt="1" />
<span class="SongName">Joel</span>
<span class="songlistplay">
<span class="timestamp"
>2:51
<i
class="fa-solid songItemPlay fa-play"
style="color: #ffffff"
></i>
</span>
</span>
</div>
<!-- end -->
</div>
</div>
<div class="songBanner"></div>
</div>
<div class="bottom">
<input type="range" id="myProgressbar" min="0" value="0" max="100" />
<div class="icons">
<i
class="fa-solid fa-backward-step"
id="previous"
style="color: #ffffff"
></i>
<i class="fa-solid fa-play" style="color: #ffffff" id="masterPlay"></i>
<i
class="fa-solid fa-forward-step"
id="next"
style="color: #ffffff"
></i>
</div>
<div class="songinfo">
<!-- song name changes -->
<img src="play.gif" width="50px" class="rotate-img" id="gif" />
<span id="MasterSongName">Joel</span>
</div>
</div>
<!-- script -->
<script
src="https://kit.fontawesome.com/9bf23ddcb3.js"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>
<!-- completed! -->
<!-- completed! -->