Asteroids/asteroids.html
Tyler Williamson 43c64d4e61 Initial Commit
2018-03-23 17:26:30 -04:00

12 lines
465 B
HTML

<html>
<head>
<title>HTML5 Asteroids</title>
<script type="text/javascript" src="scripts/Asteroid.js"></script>
<script type="text/javascript" src="scripts/Ship.js"></script>
<script type="text/javascript" src="scripts/Bullet.js"></script>
<script type="text/javascript" src="scripts/asteroids.js"></script>
</head>
<body>
<canvas id="canvas" height="600" width="800" style="border: 1px solid black;background-color: black"></canvas>
</body>
</html>