File size: 581 Bytes
e762863
 
 
 
 
bd734af
2fe2a19
e762863
 
bd734af
 
 
 
 
 
 
 
1936e7d
bd734af
e762863
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Futuristic Space Shooter</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="game-container">
        <h1>Futuristic Space Shooter</h1>
        <canvas id="gameCanvas"></canvas>
        <div id="gameOver" class="game-over">
            <h2>Game Over</h2>
            <button onclick="startGame()">Start Again</button>
        </div>
    </div>

    <script src="game.js"></script>
</body>
</html>