Compare commits
No commits in common. "5b65c84e2e2a6030a216c906e4931a4ada18f135" and "11087d4935bea0f4b6dd03d443c08ec1b45b7a47" have entirely different histories.
5b65c84e2e
...
11087d4935
1 changed files with 20 additions and 32 deletions
|
@ -1,34 +1,21 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<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>
|
||||
|
||||
<body>
|
||||
<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>
|
||||
|
||||
<body>
|
||||
<div id="settings">
|
||||
<h1>Minesweeper</h1>
|
||||
<label for="gridSize">Grid Size:</label>
|
||||
<input
|
||||
type="number"
|
||||
id="gridSize"
|
||||
min="1"
|
||||
max="25"
|
||||
value="9"
|
||||
aria-label="Grid Size"
|
||||
/>
|
||||
<input type="number" id="gridSize" min="1" max="25" value="9" aria-label="Grid Size">
|
||||
|
||||
<label for="bombs">Number of Bombs:</label>
|
||||
<input
|
||||
type="range"
|
||||
id="bombs"
|
||||
min="1"
|
||||
max="80"
|
||||
value="20"
|
||||
aria-label="Number of Bombs"
|
||||
/>
|
||||
<input type="range" id="bombs" min="1" max="80" value="20" aria-label="Number of Bombs">
|
||||
|
||||
<button id="startGame">Start Game</button>
|
||||
</div>
|
||||
|
@ -38,5 +25,6 @@
|
|||
</div>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue