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