-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.3 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="invaderscss.css">
<title>Neo vaders</title>
</head>
<body>
<!--Canvas allows is not only alot faster
it allows you to add so much more interactivity to your web pages
because now you can control the graphics, images,
and text dynamically with a scripting language.
The CANVAS element helps you turn images, photos,
charts, and graphs into animated elements.3 -->
<h1 id="Title"> Neo Vaders </h1>
<canvas id="game"></canvas>
<!-- <div style="display:none;">
<img id="space-png" src="../JS/images/space.png" alt="" />
</div>-->
<script type="module" src="./index.js"></script>
</body>
<footer>
<ul class="Instructions">
<br>
<br>
<br>
<label for="Instructions" id="instruct-list"> Instructions : </label>
<li>Space - Shoot</li>
<li>Directional arrows - Move left and Right</li>
<br>
<br>
<br>
</hr>
<label for="credit"> Credit to Coding with Adam for JS lesson </label>
<br>
<br>
</ul>
</footer>
</html>