-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (30 loc) · 954 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Meteor Defense</title>
<link rel="shortcut icon" href="./images/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Black+Ops+One" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="./style.css">
</head>
<body>
<section class="left-section">
<div class="wrapper">
<button id="start-button">START GAME</button>
<button id="pause-button">PAUSE</button>
<button id="reset-button">RESET</button>
</div>
</section>
<section class="game">
<canvas id="game" width="600" height="600"></canvas>
</section>
<section class="right-section">
<article class="wrapper">
<h2>DEFEND your 6 BASES and your CANNON!</h2>
<h3>HOW to PLAY:</h3>
<p class="instructions">Click to launch Plasma Missiles at incoming Meteors</p>
</article>
</section>
<script src="./main.bundle.js"></script>
</body>
</html>