-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (23 loc) · 847 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Jukebox</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body onload="shuffle()">
<h6 id="playing" class="Playing">Playing...</h6>
<img onclick="play()" src="images/buttons/play.png" class="playButton">
<img onclick="pause()" src="images/buttons/pause.png" class="pauseButton">
<img onclick="next()" src="images/buttons/next.png" class="nextButton">
<img onclick="previuos()" src="images/buttons/previous.png" class="previousButton">
<div class="playlist">
<p>Led Zeppelin-Stairway To Heaven</p>
<p>Pink Floyd-Us and Then</p>
<p>USA FOR AFRICA -We Are The World</p>
</div>
<div id="f-Song">
<audio id="f-audio" src="audio/Led Zeppelin-Stairway To Heaven.mp3"></audio>
</div>
<script type="text/javascript" src="js/global.js"></script>
</body>
</html>