what the hell
This commit is contained in:
parent
ece497e2cf
commit
c8ba7b494f
3 changed files with 113 additions and 61 deletions
|
@ -10,13 +10,20 @@
|
|||
|
||||
<body>
|
||||
<div id="settings">
|
||||
<h1>Minesweeper</h1>
|
||||
<label for="gridSize">Grid Size:</label>
|
||||
<input type="number" id="gridSize" min="1" value="18">
|
||||
<input type="number" id="gridSize" min="1" max="25" value="9" aria-label="Grid Size">
|
||||
|
||||
<label for="bombs">Number of Bombs:</label>
|
||||
<input type="number" id="bombs" min="1" value="54">
|
||||
<input type="range" id="bombs" min="1" max="80" value="20" aria-label="Number of Bombs">
|
||||
|
||||
<button id="startGame">Start Game</button>
|
||||
</div>
|
||||
<canvas id="game"></canvas>
|
||||
|
||||
<div class="container">
|
||||
<canvas id="game"></canvas>
|
||||
</div>
|
||||
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue