minesweeper/html/index.html

27 lines
545 B
HTML
Raw Normal View History

<!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>
</body>
</html>