Minesweeper-JS/index.html
2024-05-08 13:51:57 -04:00

25 lines
No EOL
621 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="Stylesheet" href="styles/styles.css">
<title>MINESWEEPER</title>
</head>
<body>
<!-- Grid -->
<div id="grid">
<!-- Header -->
<div class="grid_head">
<h2 id="flags" style="display:inline-block;">010</h2>
<button id="restart">Restart</button>
<h2 id="time" style="display:inline-block;">000</h2>
</div>
<!-- Grid -->
<canvas width="700" height="600"></canvas>
</div>
<!-- Scripts -->
<script src="scripts/script.js"></script>
<script src="scripts/game.js"></script>
</body>
</html>