-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
41 lines (38 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Daniel - Project 1 - Bomberman Clone</title>
<link rel="stylesheet" href="./Assets/web fonts/silkscreen_bold_macroman/stylesheet.css" type="text/css" charset="utf-8" />
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<h1>Bomberman<br>Clone</h1>
<div id="content">
<div id="game-board">
<canvas id="canvas" width="750" height="600"></canvas>
</div>
<footer>
<h2>Instructions</h2>
<div id="instructions">
<div class="player">
<h2>Player 1</h2>
<p>Move: Arrow keys</p>
<p>Place Bomb: Spacebar</p>
</div>
<div class="player">
<h2>Player 2</h2>
<p>Move: W A S D</p>
<p>Place Bomb: Q</p>
</div>
</div>
</footer>
</div>
<script src="./JS/audio.js"></script>
<script src="./JS/map.js"></script>
<script src="./JS/sprite.js"></script>
<script src="./JS/script.js"></script>
</body>
</html>