-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
27 lines (27 loc) · 821 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>
<head>
<meta charset="utf-8">
<title>Battle-City-Advanced</title>
</head>
<body>
<div id="canvas-container">
<canvas id="canvas" width="800" height="400"></canvas>
</div>
<div id="introduction">
<p>Battle City is one of the most popular games in the world, and this is a JS version</p>
<hr>
<div class="details">
<section class="left">
<p><span class="code">W,A,S,D</span>-directions</p>
<p><span class="code">J</span>-fire</p>
<p><span class="code">Esc</span>-quit mode</p>
</section>
<section class="right">
<p>Since there is no default map, you must build a map first by click the 'construction'</p>
</section>
</div>
</div>
<script src="./dist/game.bundle.js"></script>
</body>
</html>