interstellar_website/secret/asteroidDestroyer/explenation.html

30 lines
908 B
HTML
Raw Normal View History

2024-12-17 14:42:17 +01:00
<!DOCTYPE html>
<html lang="en">
2025-01-05 01:13:23 +01:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Game Landing Page</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="landing-page">
<div class="game-background">
<!-- Game is embedded or shown as background -->
<canvas id="gameCanvas"></canvas>
</div>
2024-12-17 14:42:17 +01:00
2025-01-05 01:13:23 +01:00
<div class="content">
<h1>Welcome to the Asteroid Game!</h1>
<p>
In this game, you control a spaceship that shoots at asteroids to
avoid destruction and collect items for power-ups.
</p>
<p>Your goal is to survive as long as possible while scoring points!</p>
<button onclick="window.location.href='secret.html'">Play Game</button>
</div>
2024-12-17 14:42:17 +01:00
</div>
2025-01-05 01:13:23 +01:00
<script src="app.js"></script>
</body>
2024-12-17 14:42:17 +01:00
</html>