2020-11-08 13:23:38 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Minesweeper 99</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h1><i class="fas fa-bomb"></i>Minesweeper 99</h1>
|
|
|
|
|
|
|
|
<div id="main">
|
|
|
|
<div id="board">
|
|
|
|
<!-- Renderer will push content here -->
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="log">
|
|
|
|
<h2>Gamelog</h2>
|
|
|
|
<!-- Game log will be pushed here -->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="/main.js"></script>
|
2020-11-08 22:47:13 +01:00
|
|
|
|
|
|
|
<footer>
|
|
|
|
> Coded by <a href="//arnweb.nl">McArn</a>.
|
|
|
|
</footer>
|
|
|
|
|
2020-11-08 13:23:38 +01:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|