-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 924 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bomber-Chip</title>
<link rel="stylesheet" href="styles/styles.css" />
</head>
<body>
<section class="game-container">
<article>
<p>Lives: <span id="lives"></span></p>
<p>Time: <span id="time"></span> Seg</p>
<p>Record: <span id="record"></span> Seg</p>
</article>
<canvas id="game"></canvas>
<section class="buttons-container">
<button id="up" class="game-button">Up</button>
<button id="left" class="game-button">Left</button>
<button id="right" class="game-button">Right</button>
<button id="down" class="game-button">Down</button>
</section>
</section>
<script src="scripts/maps.js"></script>
<script src="scripts/game.js"></script>
</body>
</html>