-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame.html
43 lines (35 loc) · 976 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
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/background.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="preloader">
<div class="coffee_cup"></div>
</div>
<div class="preview">
<h1>War<br>Space</h1>
<button id="playButton" class="playButton">PLAY</button>
</div>
<div id="game-over-overlay" class="game-over-overlay"> </div>
<canvas></canvas>
<div id="score" class="score"></div>
<div id="hero_life" class="hero_life"></div>
<div class="boss_life">
<div class="progress-bar">
<div class="progress"></div>
</div>
</div>
<div id="game-over" class="game-over">
<h2 class="gameInfo"></h2>
<button id="play-again">Play Again</button>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>