Update index.html
Browse files- 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
|
7 |
<link rel="stylesheet" href="style.css">
|
8 |
</head>
|
9 |
<body>
|
10 |
-
<
|
11 |
-
<
|
12 |
-
<
|
13 |
-
|
14 |
-
<
|
15 |
-
<
|
16 |
-
|
17 |
-
|
18 |
-
</header>
|
19 |
|
20 |
-
<
|
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>© 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>
|