-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
30 lines (27 loc) · 895 Bytes
/
game.html
File metadata and controls
30 lines (27 loc) · 895 Bytes
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
<!DOCTYPE html>
<!--suppress HtmlFormInputWithoutLabel -->
<html lang="en">
<head>
<title>Asteroids</title>
<meta name="gi" content="qrs.asteroids">
<meta name="gv" content="1.1">
<link rel="stylesheet" type="text/css" href="game.css">
<script src="loader.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="game-layer">
<canvas id="game-canvas" width="500" height="500" autofocus></canvas>
<div class="controls-c">
<div class="controls">
<button class="btn" id="fL">!</button>
<button class="btn" id="fR">!</button>
<button class="btn" id="bL"><</button>
<input type="range" min="1" max="100" value="50" id="iS">
<button class="btn" id="bR">></button>
</div>
</div>
</div>
</body>
</html>