Flux-web / index.html
GarGerry's picture
Update index.html
bd734af verified
raw
history blame
581 Bytes
<!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>