-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.19 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
<!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>scuffed internet playlist</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<script src="https://unpkg.com/lucide@latest/dist/umd/lucide.js"></script>
</head>
<body>
<div class="now-playing">Currently Not Playing Any Track</div>
<div class="controls">
<i icon-name="play"></i>
<i icon-name="pause" class="hidden"></i>
<i icon-name="skip-back"></i>
<i icon-name="skip-forward"></i>
<i icon-name="shuffle"></i>
<i icon-name="volume-1"></i>
<i icon-name="volume-x" class="hidden"></i>
<input type="range" min="0" max="100" class="volume-slider">
<span class="timer">0:00 / 0:00</span>
</div>
<div class="track-list"></div>
<audio id="audio"></audio>
<div class="credits">
<a href="http://aersia.net" target="_blank">playlist by Cats777</a>
</div>
<script>
lucide.createIcons();
</script>
<script src="tracks.js"></script>
<script src="main.js"></script>
</body>
</html>