Compare commits

..

No commits in common. "5b65c84e2e2a6030a216c906e4931a4ada18f135" and "11087d4935bea0f4b6dd03d443c08ec1b45b7a47" have entirely different histories.

View file

@ -1,34 +1,21 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minesweeper</title> <title>Minesweeper</title>
<link rel="stylesheet" href="styles.css" /> <link rel="stylesheet" href="styles.css">
</head> </head>
<body> <body>
<div id="settings"> <div id="settings">
<h1>Minesweeper</h1> <h1>Minesweeper</h1>
<label for="gridSize">Grid Size:</label> <label for="gridSize">Grid Size:</label>
<input <input type="number" id="gridSize" min="1" max="25" value="9" aria-label="Grid Size">
type="number"
id="gridSize"
min="1"
max="25"
value="9"
aria-label="Grid Size"
/>
<label for="bombs">Number of Bombs:</label> <label for="bombs">Number of Bombs:</label>
<input <input type="range" id="bombs" min="1" max="80" value="20" aria-label="Number of Bombs">
type="range"
id="bombs"
min="1"
max="80"
value="20"
aria-label="Number of Bombs"
/>
<button id="startGame">Start Game</button> <button id="startGame">Start Game</button>
</div> </div>
@ -39,4 +26,5 @@
<script src="script.js"></script> <script src="script.js"></script>
</body> </body>
</html> </html>