-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (41 loc) · 1.61 KB
/
index.html
File metadata and controls
50 lines (41 loc) · 1.61 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NathPlayer</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div id="player">
<h4><i class="material-icons">equalizer</i>NathPlayer</h4></h4>
<div class="card">
<div class="card-image">
<a href="#" class="btn-floating btn-large halfway-fab">
<i class="material-icons" id="play-pause"> play_arrow </i>
</a>
</div>
<div class="card-content">
<h5 class = "title">Title</h5>
<p class="artist"> Artist </p>
<div class="row valign-wrapper">
<div class="col s2" id="current-duration">00:00</div>
<div class="col s6 range-field valign-wrapper">
<input type="range" min=0 max =1 id="seekbar" step="1">
</div>
<div class="col s2" id="total-duration">00:00</div>
<div>
<a href="#">
<i class="material-icons" id ="vol"> volume_up</i>
</a>
</div>
<div class="col s3 range-field valign-wrapper">
<input type="range" min=0 max =100 id="vol-control" step="1">
</div>
</div>
</div>
</div>
<script src="index.js" type="module"></script>
</div>
</body>
</html>