-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSound Board HTML.html
More file actions
40 lines (21 loc) · 887 Bytes
/
Sound Board HTML.html
File metadata and controls
40 lines (21 loc) · 887 Bytes
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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8" />
<meta name = "viewport" content = "width = device-width, initial-scale = 1.0" />
<link rel = "stylesheet" href = "Sound Board CSS.css" />
<title>
Sound Board
</title>
</head>
<body>
<audio id = "applause" src = "applause.mp3"></audio>
<audio id = "boo" src = "boo.mp3"></audio>
<audio id = "gasp" src = "gasp.mp3"></audio>
<audio id = "tada" src = "tada.mp3"></audio>
<audio id = "victory" src = "victory.mp3"></audio>
<audio id = "wrong" src = "wrong.mp3"></audio>
<div id = "buttons"></div>
<script src = "Sound Board JS.js"></script>
</body>
</html>