-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.htm
More file actions
44 lines (40 loc) · 1.19 KB
/
index.htm
File metadata and controls
44 lines (40 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Drop Player</title>
<link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'><!-- Header font -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1><span>Drop</span> Player</h1>
</header>
<section id="player">
<ul class="controls">
<li><a href="#" id="prev">Previous</a></li>
<li><a href="#" id="playpause">Play/pause</a></li>
<li><a href="#" id="next">Skip</a></li>
<li class="random-li"><form>
<input type="checkbox" id="random" value="1" />
<label for="random">Randomize</label>
</form></li>
<li class="show-playlist"><a href="#playlist">Playlist</a></li>
</ul>
<div id="current-song">
<span id="songtitle">No song loaded</span>
<span id="length">00:00</span>
<span id="position">00:00</span>
</div>
<audio id="audioplayer"></audio>
</section>
<section id="playlist">
<h2>Pick a Tune</h2>
<ul id="list">
</ul>
</section>
<script src="http://code.jquery.com/jquery-1.6.2.min.js"></script>
<script src="scripts/functions.js"></script>
</body>
</html>