-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1" />
<title>Alien Shooter</title>
<script type="text/javascript" src="vectors.js"></script>
<script type="text/javascript" src="credits.js"></script>
<script type="text/javascript" src="powerup.js"></script>
<script type="text/javascript" src="utilities.js"></script>
<script type="text/javascript" src="particle.js"></script>
<script type="text/javascript" src="spaceship.js"></script>
<script type="text/javascript" src="projectile.js"></script>
<script type="text/javascript" src="viewport.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript" src="background.js"></script>
<script type="text/javascript" src="alien-shooter.js"></script>
<script type="text/javascript" src="EnemySpawning.js"></script>
<!-- To avoid trouble with zoom on double tap on mobile devices -->
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=0.5, minimum-scale=0.5"/>
<link rel="stylesheet" href="styles.css" media="screen" />
</head>
<body style="margin: 0px; padding: 0px;">
<canvas id="mainCanvas" style= "height: 100%; width: 100%; display:block; z-index: 500;"/>
</body>
</html>