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