-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (41 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Song Player Page</title>
</head>
<body>
<h1>Song Player Page</h1>
<!-- Song Player 1 -->
<div>
<h3>Song 1</h3>
<audio id="Quiz_Audio_01" src="Quiz_Audio_01.mp3"></audio>
<button onclick="document.getElementById('Quiz_Audio_01').play()">Play Song 1</button>
</div>
<!-- Song Player 2 -->
<div>
<h3>Song 2</h3>
<audio id="Quiz_Audio_02" src="Quiz_Audio_02.mp3"></audio>
<button onclick="document.getElementById('Quiz_Audio_02').play()">Play Song 2</button>
</div>
<!-- Song Player 3 -->
<div>
<h3>Song 3</h3>
<audio id="Quiz_Audio_03" src="Quiz_Audio_03.mp3"></audio>
<button onclick="document.getElementById('Quiz_Audio_03').play()">Play Song 3</button>
</div>
<!-- Song Player 4 -->
<div>
<h3>Song 4</h3>
<audio id="Quiz_Audio_04" src="Quiz_Audio_04.mp3"></audio>
<button onclick="document.getElementById('Quiz_Audio_04').play()">Play Song 4</button>
</div>
<!-- Song Player 5 -->
<div>
<h3>Song 5</h3>
<audio id="Quiz_Audio_05" src="Quiz_Audio_05.mp3"></audio>
<button onclick="document.getElementById('Quiz_Audio_05').play()">Play Song 5</button>
</div>
</body>
</html>