forked from APCSLowell/AsteroidsGame
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 666 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 666 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Asteroids</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="styles.css">
<script src="processing.js"></script>
</head>
<body>
<header>
<h1>Asteroids</h1>
</header>
<section id="content">
<canvas id="AsteroidsGame" data-processing-sources="Asteroid.pde AsteroidsGame.pde Bullet.pde Button.pde Floater.pde PowerUp.pde Spaceship.pde Star.pde Targeter.pde">
</canvas>
</section>
<footer>
Controls are found when you click the controls button in the menu
</footer>
</body>
</html>