pages/secret/mineSweeper/index.html

30 lines
741 B
HTML
Raw Permalink Normal View History

2025-01-04 21:58:26 +01:00
<!DOCTYPE html>
<html lang="en">
2025-01-05 20:26:18 +01:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Minesweeper</title>
<link rel="stylesheet" href="styles.css" />
</head>
2025-01-05 00:14:59 +01:00
2025-01-05 20:26:18 +01:00
<body>
<div id="settings">
<h1>Minesweeper</h1>
<label for="gridSize">Grid Size:</label>
<input type="number" id="gridSize" min="6" max="25" value="9" aria-label="Grid Size" />
2025-01-05 00:14:59 +01:00
2025-01-05 20:26:18 +01:00
<label for="bombs">Number of Bombs:</label>
<input type="number" id="bombs" min="1" max="300" value="9" aria-label="Number of Bombs" />
2025-01-05 00:14:59 +01:00
2025-01-05 20:26:18 +01:00
<button id="startGame">Start Game</button>
</div>
2025-01-04 21:58:26 +01:00
2025-01-05 20:26:18 +01:00
<div class="container">
<canvas id="game"></canvas>
</div>
<script src="script.js"></script>
</body>
</html>