-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlisten.html
More file actions
34 lines (28 loc) · 1.7 KB
/
listen.html
File metadata and controls
34 lines (28 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Listen</title>
<link rel="stylesheet" href="css/talker.css">
</head>
<body>
<div class="info" tabindex="1">
<img src="images/info.jpg" alt="You are on Listen to Music">
</div>
<div class="btn a weezer" tabindex="2">Weezer</div>
<div class="btn b dekker" tabindex="3">Desmond Dekker</div>
<div class="btn c springsteen" tabindex="4">Bruce Springsteen</div>
<div class="btn d ghostbusters" tabindex="5">Ghostbusters</div>
<div class="btn e beatles" tabindex="6">The Beatles</div>
<a href="javascript:location.replace('want.html')" class="btn up" tabindex="0">
<img src="images/up.jpg" alt="Go back to the last page">
</a>
<audio id="weezer" controls style="display:none"><source src="sounds/weezer.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<audio id="dekker" controls style="display:none"><source src="sounds/dekker.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<audio id="springsteen" controls style="display:none"><source src="sounds/springsteen.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<audio id="ghostbusters" controls style="display:none"><source src="sounds/ghostbusters.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<audio id="beatles" controls style="display:none"><source src="sounds/beatles.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src="js/talker.js"></script>
</body>
</html>