GarGerry commited on
Commit
bd734af
·
verified ·
1 Parent(s): b9e8fab

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +10 -19
index.html CHANGED
@@ -3,28 +3,19 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>Futuristic Game Theme</title>
7
  <link rel="stylesheet" href="style.css">
8
  </head>
9
  <body>
10
- <header>
11
- <div class="logo">Futuristic Game</div>
12
- <nav>
13
- <a href="#">Home</a>
14
- <a href="#">Start</a>
15
- <a href="#">Settings</a>
16
- <a href="#">Leaderboard</a>
17
- </nav>
18
- </header>
19
 
20
- <section class="hero">
21
- <h1>Welcome to the Future</h1>
22
- <p>Embark on an intergalactic adventure with futuristic graphics and gameplay.</p>
23
- <button class="start-btn">Start Game</button>
24
- </section>
25
-
26
- <footer>
27
- <p>&copy; 2025 Futuristic Game. All Rights Reserved.</p>
28
- </footer>
29
  </body>
30
  </html>
 
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>