js13kgames2015-reverse/src/index.html

32 lines
944 B
HTML
Raw Normal View History

2015-08-24 15:40:02 +02:00
<html>
<head>
<meta charset="utf-8">
<title>js13kGames 2015 -- Aaron Fischer</title>
2015-08-24 16:28:52 +02:00
<script src="js13kgames-2015.min.js"></script>
2015-08-24 15:40:02 +02:00
</head>
<body>
2015-08-24 16:28:52 +02:00
<nav>
<ul>
<li>Dust: <strong id="res-dust">0</strong></li>
2015-08-25 16:04:47 +02:00
<li>Stone: <strong id="res-stone">0</strong></li>
<li>Carbon: <strong id="res-carbon">0</strong></li>
<li>Metal: <strong id="res-metal">0</strong></li>
2015-08-24 16:28:52 +02:00
</ul>
</nav>
2015-08-24 15:40:02 +02:00
<div id="asteroid">
<p>Time wasted on this ateroid: <strong id="time">0 hours</strong></p>
<h2>Asteroid classification: <span id="asteroid-classification"></span></h2>
<button id="btn-mine">Mine on this asteroid now!</button>
<button id="btn-to-station">Fly to station</button>
</div>
2015-08-25 16:04:47 +02:00
<div id="station">
<h2>Docked to station</h2>
<button id="btn-to-asteroid">Fly to the asteroid</button>
</div>
2015-08-24 16:28:52 +02:00
<script>bootstrap();</script>
2015-08-24 15:40:02 +02:00
</body>
</html>