-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
39 lines (24 loc) · 830 Bytes
/
game.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
<!DOCTYPE html>
<html lang = "en">
<head id = "header">
<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="icon" href="assets/icon.png" />
<link rel="stylesheet" href="gameStyle.css">
<title>Your extension name</title>
</head>
<body>
<h1>Carbon Cleanup</h1>
<p>
Click the canvas to start, use arrow keys to move around
</p>
<script src="gamePage.js"></script>
</body>
<canvas class = "myCanvas" id="myCanvas" width="800" height="600" style="border:1px solid #000000;"></canvas>
<!-- <div class="subnav">
<button id = "subnavbtn"> FIGHT <i class="fa fa-caret-down"></i></button>
<div class="subnav-content">
</div>
</div> -->
</html>