-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (24 loc) · 954 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bacterio</title>
<link rel="stylesheet" href="src/styles.css">
</head>
<body>
<div id="dashboard">
<div>Years of evolution: <span id="years-running"></span></div>
<div>Game speed: x<span id="game-speed"></span></div>
<hr>
<div>Population (now/max): <span id="population-now"></span> / <span id="population-max"></span></div>
<div>Max score (now/max): <span id="max-score-now"></span> / <span id="max-score-max"></span></div>
<div>Max age (now/max): <span id="max-age-now"></span> / <span id="max-age-max"></span></div>
<div>Max generation (now/max): <span id="max-generation-now"></span> / <span id="max-generation-max"></span></div>
<hr>
<div>Zoom: <kbd>+</kbd> / <kbd>-</kbd></div>
<div>Game speed: <kbd>Q</kbd> / <kbd>A</kbd></div>
</div>
<div id="game-container"></div>
<script src="dist/scripts.js"></script>
</body>
</html>