GarGerry commited on
Commit
e2a6404
·
verified ·
1 Parent(s): a5192e0

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +13 -13
index.html CHANGED
@@ -1,21 +1,21 @@
1
  <!DOCTYPE html>
2
  <html lang="en">
3
  <head>
4
- <meta charset="UTF-8">
5
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Futuristic Space Shooter</title>
7
- <link rel="stylesheet" href="style.css">
8
  </head>
9
  <body>
10
- <div class="game-container">
11
- <h1>Futuristic Space Shooter</h1>
12
- <canvas id="gameCanvas"></canvas>
13
- <div id="gameOver" class="game-over">
14
- <h2>Game Over</h2>
15
- <button onclick="startGame()">Start Again</button>
16
- </div>
17
- </div>
18
 
19
- <script src="game.js"></script>
20
  </body>
21
  </html>
 
1
  <!DOCTYPE html>
2
  <html lang="en">
3
  <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Guess the Number Game</title>
7
+ <link rel="stylesheet" href="styles.css">
8
  </head>
9
  <body>
10
+ <div class="game-container">
11
+ <h1>Guess the Number Game</h1>
12
+ <p>Try to guess the number between 1 and 100!</p>
13
+ <input type="number" id="guess" placeholder="Enter a number">
14
+ <button id="submit">Submit Guess</button>
15
+ <p id="result"></p>
16
+ <p id="attempts"></p>
17
+ </div>
18
 
19
+ <script src="script.js"></script>
20
  </body>
21
  </html>