-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
98 lines (80 loc) · 3.06 KB
/
Copy pathmain.html
File metadata and controls
98 lines (80 loc) · 3.06 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Camping Essentials</title>
</head>
<body>
<h1>Camping Essentials</h1>
<ul>
<li><a href="http://127.0.0.1:5500/dangerous-animals.html">Dangerous Animals</a></li>
<li><a href="http://127.0.0.1:5500/poisonous-plants.html">Poisonous Plants</a></li>
<li><a href="http://127.0.0.1:5500/signaling.html">Signaling Technique</a></li>
<li><a href="http://127.0.0.1:5500/food-procurement.html">Food Procurement</a></li>
<li><a href="http://127.0.0.1:5500/shelters.html">Shelters</a></li>
<li><a href="http://127.0.0.1:5500/firecraft.html">Firecraft</a></li>
</ul>
</body>
</html> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Camping Essentials Guide</title>
<link rel="icon" type="image/png" href="camping essentials icon.jpg">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<div class="nav-left">
<a href="#">Home</a>
<a href="#">Guides</a>
</div>
<a href="#" class="nav-logo">Camping Essentials</a>
<div class="nav-right">
<a href="#">About</a>
<a href="#">Contact</a>
</div>
<button class="menu-btn">☰</button>
</div>
</nav>
<main class="main">
<div class="card-grid">
<a href="http://127.0.0.1:5500/dangerous-animals.html" class="card">
<div class="icon">⚠️</div>
<span class="card-title">Dangerous Animals</span>
<span class="card-sub">Know what to watch for.</span>
</a>
<a href="http://127.0.0.1:5500/poisonous-plants.html" class="card">
<div class="icon">🌿</div>
<span class="card-title">Poisonous Plants</span>
<span class="card-sub">Identify before you touch.</span>
</a>
<a href="http://127.0.0.1:5500/signaling.html" class="card">
<div class="icon">📢</div>
<span class="card-title">Signaling Technique</span>
<span class="card-sub">How to call for help.</span>
</a>
<a href="http://127.0.0.1:5500/food-procurement.html" class="card">
<div class="icon">🥗</div>
<span class="card-title">Food Procurement</span>
<span class="card-sub">Finding safe food.</span>
</a>
<a href="http://127.0.0.1:5500/shelters.html" class="card">
<div class="icon">🏕️</div>
<span class="card-title">Shelters</span>
<span class="card-sub">Building temporary cover.</span>
</a>
<a href="http://127.0.0.1:5500/firecraft.html" class="card">
<div class="icon">🔥</div>
<span class="card-title">Firecraft</span>
<span class="card-sub">Starting a fire safely.</span>
</a>
</div>
</main>
</body>
</html>