asdf-games/examples/shooter/index.html
2019-12-31 15:41:21 +01:00

21 lines
761 B
HTML

<html>
<head>
<meta charset="utf-8" />
<title>Game</title>
<link rel="stylesheet" href="res/main.css" />
</head>
<body>
<header class="title">SPACEMANIA 2000</header>
<div id="board">
<!-- Renderer will push content here -->
</div>
<div class="controls_container">
<span style="grid-area: control_1" class="control" title="W, A, S and D Keys">W<br>ASD</span>
<span style="grid-area: control_def_1" class="control_definition" title="Move your spacecraft!">Move</span>
<span style="grid-area: control_2" class="control" title="Space Key"><br>_</span>
<span style="grid-area: control_def_2" class="control_definition" title="Shoot Bullets!">Shoot</span>
</div>
<script type="module" src="src/main.js"></script>
</body>
</html>