-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
29 lines (29 loc) · 898 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
<!--
File index.html
implemented by Adelino Lobão
09/01/2012
-->
<html>
<head>
<title>Space Invaders</title>
<link rel="stylesheet" href="style/style_space.css" />
<link rel="stylesheet" href="style/normalize.css"/>
</head>
<body>
<header>
<img src="style/images/logo.gif" />
</header>
<section id="controls">Z (Left) - X (Right) - SPACE (Shoot)</section>
<canvas id="content"></canvas>
<section id="info">
<a href="https://github.com/adelinolobao/Space-Invaders-HTML-5" target="_blank"><strong>Follow project on github</strong></a>
</section>
<script src="script/keyhandler.js"></script>
<script src="script/colisionhandler.js"></script>
<script src="script/enemy.js"></script>
<script src="script/sprite.js"></script>
<script src="script/laser.js"></script>
<script src="script/player.js"></script>
<script src="script/game.js"></script>
</body>
</html>