-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Minecraft Wiki - Home</title>
</head>
<body>
<header>
<h1>Welcome to the Minecraft Wiki</h1>
<nav>
<ul>
<li><a href="mcwiki.html" class="active">wiki-list</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>About Minecraft</h2>
<p>Minecraft is a sandbox video game developed by Mojang Studios. It allows players to explore and build in a blocky, procedurally-generated 3D world.</p>
</section>
<section>
<h2>Getting Started</h2>
<p>If you're new to Minecraft, check out our <a href="getting-started.html">Getting Started</a> guide for tips on how to survive your first night and start building.</p>
</section>
</main>
<footer>
<p>© 2023 Minecraft Wiki</p>
</footer>
</body>
</html>