caa-game/index.html

26 lines
630 B
HTML
Raw Normal View History

2020-02-29 14:05:19 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020-03-02 22:06:16 +01:00
<link rel="stylesheet" href="css/index.css">
2020-02-29 14:05:19 +01:00
<script type="module" src="src/index.js"></script>
<title>Game</title>
</head>
<body>
2020-03-04 10:20:00 +01:00
<div id="settings">
<img src="res/cog-solid.svg" alt="Settings">
</div>
<div id="menu">
<ul>
<li><a id="close">Quit game</a></li>
<li><a id="save">Save progress</a></li>
</ul>
</div>
2020-02-29 14:05:19 +01:00
<div id="board">
<!-- Renderer will push content here -->
</div>
</body>
</html>