forked from arne/asdf-games
21 lines
759 B
HTML
21 lines
759 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="bundle.js"></script>
|
|
</body>
|
|
</html>
|