This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
Minesweeper-JS/index.html

25 lines
621 B
HTML
Raw Normal View History

2024-05-08 12:51:57 -05:00
<!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>