-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (71 loc) Β· 1.97 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>How to survive in the forest π³</title>
<link rel="stylesheet" href="styles.css" />
<script src="script.js" defer></script>
</head>
<body>
<!-- a website about how to survive alone in the forest -->
<header>
<h1>How to survive in the forest π³</h1>
</header>
<main>
<section>
<h2>Introduction</h2>
<p>
This be a guide that will teach ye how t' survive in th' forest
without any tools.
</p>
<p>
Ye will learn how t' find water, grub and shelter. ye will also learn
how t' build a fire, how t' make a trap.
</p>
</section>
<section>
<h2>What to bring?</h2>
<div>
<ul>
<li>Water π§</li>
<li>Food π</li>
<li>Knife πͺ</li>
<li>Tent π</li>
<li>Compass π§</li>
<li>Flashlight π¦</li>
<li>Matches π₯</li>
<li>Map πΊ</li>
</ul>
</div>
</section>
<section>
<h2>What to do?</h2>
<div>
<ul>
<li>Find a place to camp π</li>
<li>Make a fire π₯</li>
<li>Make a shelter π </li>
<li>Find food π</li>
</ul>
</div>
</section>
<section>
<h2>What not to do?</h2>
<div>
<ul>
<li>Don't panic π±</li>
<li>Don't eat berries π</li>
<li>Don't eat bugs π</li>
<li>Don't eat snakes π</li>
<li>Don't eat frogs πΈ</li>
</ul>
</div>
</section>
</main>
<footer>
<p>Β© <span data-js="date"></span> β How to survive in the forest π³</p>
</footer>
</body>
</html>