-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (29 loc) · 1.09 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
<!DOCTYPE html>
<!-- 2012 -->
<html>
<head>
<meta charset="utf-8" />
<title>It's Mario !</title>
<link rel="stylesheet" type="text/css" href="media/css/mario.css" />
</head>
<body>
<div id="container">
<h3>Mario VS. Bowser</h3>
<div id="game">
<div id="score">0</div>
<div id="game-over">You WIN!</div>
<img id="sun" src="media/img/sun.gif" />
<div class="mario mario-walk-right"></div>
<img id="ball" src="media/img/fireball.gif" />
<img id="boss" src="media/img/boss.gif" />
<img id="explosion" src="media/img/explosion.gif" />
</div>
<button>
<blink>Click to Start</blink>
</button>
<div id="footer">Space: Shoot, Left: Move Left, Up: Jump, Right: Move Right</div>
</div>
<script src="https://code.jquery.com/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="media/js/mario.js"></script>
</body>
</html>