-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 1.5 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Game Project</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to My Game Project</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#screenshots">Screenshots</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="about">
<h2>About the Game</h2>
<p>This game is developed as a school project. It involves a swarm of enemies trying to attack you. You must survive for as long as you can.</p>
</section>
<section id="features">
<h2>Game Features</h2>
<ul>
<li>Fun Gameplay</li>
<li>Endless Waves</li>
<li>Choice of weapons</li>
</ul>
</section>
<section id="screenshots">
<h2>Screenshots</h2>
<img src="images/screenshot1.png" alt="Screenshot 1">
<img src="images/screenshot2.png" alt="Screenshot 2">
<img src="images/screenshot3.png" alt="Screenshot 3">
</section>
<footer id="contact">
<h2>Contact Us</h2>
<p>If you have any questions or feedback, please reach ask questions on my github page :)</p>
<p>© 2024 My Game Project</p>
</footer>
</body>
</html>