-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (28 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="styles/style.css" />
<title>Trees Armageddon</title>
</head>
<body>
<section>
<h1>Tree's Armageddon</h1>
<div>
<button id="start">Start</button>
<!-- <button id="reset">Reset</button> -->
</div>
<div id="game-board">
<canvas id="canvas" width="1000" height="500"></canvas>
</div>
</section>
<script type="text/javascript" src="js-files/ground.js"></script>
<script type="text/javascript" src="js-files/gun.js"></script>
<script type="text/javascript" src="js-files/character.js"></script>
<script type="text/javascript" src="js-files/projectile.js"></script>
<script type="text/javascript" src="js-files/game.js"></script>
<script type="text/javascript" src="js-files/script.js"></script>
</body>
</html>