-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dumb Music</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<button id="selectFolder">📂 Select Folder</button>
<div class="navbar">
<div id="tagList"></div>
<div class="form__group field">
<input type="input" class="form__field" placeholder="Tag" Tag="Tag" id='tagInput' required />
<label for="name" class="form__label">Tag</label>
</div>
</div>
<div id="playlist"></div>
<audio id="audio"></audio>
<div id="controls">
<div id="musicInfo">
<span id="musicName">Song Name</span>
<span id="musicDuration">00:00</span>
</div>
<div class="music-controls">
<a id="prevButton">Previous</a>
<a id="playButton">Play</a>
<a id="nextButton">Next</a>
<a id="likeButton">❤</a>
<label class="slider">
<input type="range" class="level" id="volumeSlider" min="0" max="100" value="100">
<svg class="volume" xmlns="http://www.w3.org/2000/svg" version="1.1"
xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 24 24"
style="enable-background:new 0 0 512 512" xml:space="preserve">
<g>
<path
d="M18.36 19.36a1 1 0 0 1-.705-1.71C19.167 16.148 20 14.142 20 12s-.833-4.148-2.345-5.65a1 1 0 1 1 1.41-1.419C20.958 6.812 22 9.322 22 12s-1.042 5.188-2.935 7.069a.997.997 0 0 1-.705.291z"
fill="white" data-original="#000000"></path>
<path
d="M15.53 16.53a.999.999 0 0 1-.703-1.711C15.572 14.082 16 13.054 16 12s-.428-2.082-1.173-2.819a1 1 0 1 1 1.406-1.422A6 6 0 0 1 18 12a6 6 0 0 1-1.767 4.241.996.996 0 0 1-.703.289zM12 22a1 1 0 0 1-.707-.293L6.586 17H4c-1.103 0-2-.897-2-2V9c0-1.103.897-2 2-2h2.586l4.707-4.707A.998.998 0 0 1 13 3v18a1 1 0 0 1-1 1z"
fill="white" data-original="#000000"></path>
</g>
</svg>
</label>
</div>
</div>
<script src="script.js" defer></script>
</body>
</html>