-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
196 lines (99 loc) · 4.25 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<html lang="en">
<head>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<!-- Load FontAwesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<!-- custom CSS style file -->
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<!-- Viewport baeby-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
<body>
<div class="topnav">
<a class="brand" href="#home">MK</a>
<a href="https://twitter.com/mikael_kraft"><span class="fab fa-twitter"></span> Contact Us</a>
<a href="https://github.com/MikelKraft"><span class="fab fa-github"></span> About Us</a>
</div>
<div id="clock"></div>
<p align="center"> <input type="button" class="button" onclick="fillData(); reEnable()" value="CLICK FOR JUICE WRLD"> </p>
<div id="container">
<div id="container2">
<p> The TIME font is called RIGHTEOUS: A title to one of Juice Wrld songs. A campaign against hard drugs.</p>
</div>
</div>
<!-- here displays the player container-->
<div class="player" border="3px">
<!-- Define the section for displaying details -->
<div class="details">
<div class="now-playing">
PLAYING x OF y
</div>
<div class="track-art"></div>
<div class="track-name">
Track Name
</div>
<div class="track-artist">
Track Artist
</div>
</div>
<!-- Define the section for displaying track buttons -->
<div class="buttons">
<div class="prev-track" onclick="prevTrack()">
<i class="fa fa-step-backward fa-2x"></i>
</div>
<div class="playpause-track" id="playpause-track" onclick="playpauseTrack()">
<i class="fa fa-play-circle fa-3x"></i>
</div>
<div class="next-track" onclick="nextTrack()">
<i class="fa fa-step-forward fa-2x"></i>
</div>
</div>
<!-- The section for displaying the seek slider-->
<div class="slider_container">
<div class="current-time">
00:00
</div>
<input type="range" min="1" max="100" value="0" class="seek_slider" onchange="seekTo()">
<div class="total-duration">
00:00
</div>
</div>
<!-- The section for displaying the volume slider-->
<div class="slider_container">
<i class="fa fa-volume-down fa-2x"></i>
<input type="range" min="1" max="100" value="99" class="volume_slider" onchange="setVolume()">
<i class="fa fa-volume-up fa-2x"></i>
</div>
</div>
<div id="spaces"></div>
<div id="lyrics">
<em><strong>LYRICS WILL SHOW HERE ONCE THE MUSIC STARTS</strong></em>
</div>
<div id="spaces"></div>
<footer>
<hr class="line">
<i class="fa fa-exclamation-triangle fa-2x"></i>
<div class="shun">
<span class="mob"> <p>All media contents are properties of <strong>Grade A Productions</strong> <em>via exclusive licensing to </em> <strong>Interscope Records © 2020</strong> </p></span>
<span class="cop"> <p>The media stream is from <strong><u><a class="links" href="https://windsloaded.com/juice-wrld-righteous/">Windsloaded</a></u></strong>. Background is from <strong><a href="https://a.wattpad.com/cover/124708175-352-k927639.jpg">Wattpad</a></strong></p></span>
</div>
<hr class="line">
<span>© 2022. All rights reserved. ❤️ Mikael Kraft</span>
<div class="shun">
<p><span class="fab fa-creative-commons"></span> Free for Use under these terms >></p>
<a href="https://creativecommons.org/licenses/by-nc/4.0/"><img src="https://licensebuttons.net/l/by-nc-sa/3.0/88x31.png"></a>
</div>
<!-- you can use this js for copyright, but it's damn long and I skipped. Uncomment the next line-->
<!-- <script type="text/javascript">
var newt = new Date()
document.write(newt.getFullYear())
</script> -->
</footer>
<!-- Load the main script for the player -->
<script src="main.js"></script>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</body>
</html>