-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (40 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<title>LeaningTowerOf.Pizza</title>
<meta charset="UTF-8" />
<link href="dist/bundle.css" rel="stylesheet"></link>
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet"></link>
</head>
<body>
<div id="start-game-wrapper">
<button id="start-game-btn">Start Game</button>
<h4>Instructions</h4>
<p>
<ul>
<li>Press Z to shoot LEFT</li>
<li>Press X to shoot UP</li>
<li>Press C to shoot RIGHT</li>
<li>Press the left arrow (<) to move the tower LEFT</li>
<li>Press the right arrow (>) to move the tower RIGHT</li>
</ul>
</p>
<h4>Objective</h4>
<p>
Shoot the falling toppings/pizzas and recieve points. Move left or right to avoid the objects, otherwise each object will do 10% damage. After 10 times it's game over man!
</p>
</div>
<div id="title">
<span>LeaningTowerOf.Pizza</span>
</div>
<canvas id="game-canvas" width=800 height=600></canvas>
<ul id="instructions">
<li>Z=shoot left</li>
<li>X=shoot up</li>
<li>C=shoot right</li>
<li><=move left</li>
<li>>=move right</li>
</ul>
<script src="dist/bundle.js"></script>
</body>
</html>