Merge pull request 'update' (#22) from sageTheDm/pages:main into main
Reviewed-on: https://interstellardevelopment.org/code/code/interstellar_development/interstellar_website/pulls/22
This commit is contained in:
		
						commit
						5b65c84e2e
					
				
					 1 changed files with 35 additions and 23 deletions
				
			
		| 
						 | 
				
			
			@ -1,21 +1,34 @@
 | 
			
		|||
<!DOCTYPE html>
 | 
			
		||||
<html lang="en">
 | 
			
		||||
 | 
			
		||||
  <head>
 | 
			
		||||
    <meta charset="UTF-8">
 | 
			
		||||
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
			
		||||
    <meta charset="UTF-8" />
 | 
			
		||||
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | 
			
		||||
    <title>Minesweeper</title>
 | 
			
		||||
    <link rel="stylesheet" href="styles.css">
 | 
			
		||||
    <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>
 | 
			
		||||
| 
						 | 
				
			
			@ -26,5 +39,4 @@
 | 
			
		|||
 | 
			
		||||
    <script src="script.js"></script>
 | 
			
		||||
  </body>
 | 
			
		||||
 | 
			
		||||
</html>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue