-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (30 loc) · 969 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>
<meta charset="utf-8">
<title>Block Scroller</title>
<link rel="stylesheet" type="text/css" href="./css/styles.css">
</head>
<body>
<div id="game">
<div id="score" style="font-family: Pixeled" class="moveable">Score: <div style="float: right"></div></div>
<div id="floor" class="moveable" style="width:100%;background-color:darkgoldenrod;"></div>
</div>
<!-- sounds -->
<audio id="jump-sound">
<source src="./sounds/jump.mp3" type="audio/mpeg">
</audio>
<audio id="player-death">
<source src="./sounds/mario-death.wav" type="audio/wav">
</audio>
<audio id="stomp">
<source src="./sounds/stomp.wav" type="audio/wav">
</audio>
<audio id="theme-song">
<source src="./sounds/theme-song.mp3" type="audio/mpeg">
</audio>
<!-- scripts -->
<script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
<script src="./js/app.js" type="text/javascript"></script>
</body>
</html>