-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (27 loc) · 837 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Space Wallaby</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" type="image/png" href="img/joey.png"/>
</head>
<body>
<div id="images">
<img id="font" src="img/font.png"/>
<img id="heart" src="img/heart.png"/>
<img id="wallaby" src="img/wallaby.png"/>
<img id="joey" src="img/joey.png"/>
<img id="cage" src="img/cage.png"/>
<img id="button" src="img/button.png"/>
<img id="button_pressed" src="img/button_pressed.png"/>
<img id="spaceship" src="img/spaceship.png"/>
<img id="laser" src="img/laser.png"/>
</div>
<canvas id="canvas"></canvas>
<script src="zzfx.js"></script>
<script src="vec.js"></script>
<script src="script.js"></script>
</body>
</html>