File size: 826 Bytes
e762863 1936e7d 2fe2a19 e762863 1936e7d e762863 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Futuristic Game Theme</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">Futuristic Game</div>
<nav>
<a href="#">Home</a>
<a href="#">Start</a>
<a href="#">Settings</a>
<a href="#">Leaderboard</a>
</nav>
</header>
<section class="hero">
<h1>Welcome to the Future</h1>
<p>Embark on an intergalactic adventure with futuristic graphics and gameplay.</p>
<button class="start-btn">Start Game</button>
</section>
<footer>
<p>© 2025 Futuristic Game. All Rights Reserved.</p>
</footer>
</body>
</html> |