Skip to content

Commit 289fe11

Browse files
committed
Add step one boilerplate
1 parent 1baeeb6 commit 289fe11

File tree

7 files changed

+19
-0
lines changed

7 files changed

+19
-0
lines changed

audio/1-up.wav

37.5 KB
Binary file not shown.

audio/coin.wav

41.7 KB
Binary file not shown.

audio/mushroom.wav

43.5 KB
Binary file not shown.

images/1-up.png

4.51 KB
Loading

images/coin.png

4.15 KB
Loading

images/mushroom.png

4.53 KB
Loading

index.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset="utf-8">
6+
<title>Mario Soundboard</title>
7+
</head>
8+
9+
<body>
10+
<audio id="coin">
11+
<source src="audio/coin.wav">
12+
</audio>
13+
14+
<button onclick="document.getElementById('coin').play()">
15+
Coin
16+
</button>
17+
</body>
18+
19+
</html>

0 commit comments

Comments
 (0)