-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.09 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
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CS42 Week 1 Javascript Practice!</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link href="./style/style.css" rel="stylesheet">
</head>
<body>
<header id="instructions">
<h1>Asteroid Navigator</h1>
<p>A to Move Left ; D to Move Right</p>
<p>Press Spacebar to begin</p>
</header>
<footer id="gameover">
<h1>Game Over!</h1>
<p>Press Spacebar to restart</p>
</footer>
<div id="#gamecontainer">
<div class="starfield"></div>
<div class="spaceship">
<img src="./images/DurrrSpaceShip.png"></img>
</div>
<div id="#output"></div>
</div>
<script src="./scripts/script.js"></script>
</body>
</html>