-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Forest Game Site</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</nav>
</header>
<section class="banner">
<h1>Welcome to The Forest</h1>
<p>Survive the wilderness and build your legacy</p>
<a href="register.html" class="btn">Join the Adventure</a>
</section>
<section class="info">
<h2>About the Game</h2>
<p>The Forest is an open-world survival game where you must gather resources, build, and fight to survive.</p>
<h3>Watch the Trailer</h3>
<iframe width="560" height="315" src="https://youtu.be/ay3tDjnBziY?si=TjYFNoiRNwWeg06i" frameborder="0" allowfullscreen></iframe>
</section>
<footer>
<p>© 2024 Aiko Development. All rights reserved.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>