-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
executable file
·38 lines (37 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HTML5 Audio Player</title>
<style>
#playlist{
list-style: none;
}
#playlist li a{
color:black;
text-decoration: none;
}
#playlist .current-song a{
color:blue;
}
</style>
<!-- Source Code From YouTube.com/MicroTechTutorials you may remove this message on your webpage but please do not redistribtue -->
</head>
<body>
<p>Demo Music From <a href="http://incompetech.com">incompetech.com</a></p>
<audio src="" controls id="audioPlayer">
Sorry, your browser doesn't support html5!
</audio>
<ul id="playlist">
<li class="current-song"><a href="Exit%20the%20Premises.mp3">Exit the Premises</a></li>
<li><a href="Severe%20Tire%20Damage.mp3">Severe Tire Damage</a></li>
<li><a href="Broken%20Reality.mp3">Broken Reality</a></li>
</ul>
<script src="https://code.jquery.com/jquery-2.2.0.js"></script>
<script src="audioPlayer.js"></script>
<script>
// loads the audio player
audioPlayer();
</script>
</body>
</html>