-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.57 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Madness Zombie Horde</title>
<link rel="stylesheet" href="./style.css">
<link rel="icon" type="image/x-icon" href="images/Thumbnail.ico">
</head>
<body>
<div id="opening-page">
<h1 style="font: italic small-caps bold 16px/2 cursive; font-size: 30px; color: white">Welcome to our ConUHacks VIII Project!</h1>
<h1 style="font-family: ShotgunWedding; color: rgb(178, 177, 177);">MADNESS ZOMBIE HORDE</h1>
<img src="./animations/Conuhacks.png" width="40%">
<h2 style="font: italic small-caps bold 16px/2 cursive; color: white">We chose to create a 2D zombie shooter for the Beenox sponsor challenge</h2>
<h3 style="font: italic small-caps bold 16px/2 cursive; color: white">Please enjoy!</h3>
<button id="start-button">Press to Play</button>
</div>
<div id="game-container" style="display: none;">
<canvas id = "game-canvas">
</canvas>
<h2 style="font-family: ShotgunWedding; color: maroon;">Player HP: <span id="HP-Display"></span></h3>
<h2 style="font-family: ShotgunWedding; color: maroon;">Score: <span id="Score-Display"></span></h4>
<script src="./JavaScript/OpeningPage.js"></script>
<script src="./JavaScript/Game.js"></script>
<script src="./JavaScript/Monster.js"></script>
<script src="./JavaScript/Map.js"></script>
<script src="./JavaScript/Utility.js"></script>
<script src="./JavaScript/GameEngine.js"></script>
</div>
</body>
</html>