-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 968 Bytes
/
index.html
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
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="game.html">Play</a></li>
<li><a href="instructions.html">Instructions</a></li>
</ul>
</nav>
<header>
<h1>Zombie Hunt</h1>
</header>
<main>
<section>
<h2>About the Game</h2>
<p>Get ready for an exciting adventure! Navigate through challenges, defeat enemies, and collect power-ups to enhance your abilities.</p>
</section>
<section>
<button onclick="window.location.href='game.html'">Start Game</button>
</section>
</main>
<footer>
<p>© 2024 My Game. All rights reserved.</p>
</footer>
</body>
</html>