-
Notifications
You must be signed in to change notification settings - Fork 0
/
leave-no-trace.html
144 lines (144 loc) · 5.4 KB
/
leave-no-trace.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!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="./assets/css/style.css" />
<link rel="stylesheet" href="./assets/css/secondary-styles.css" />
<title>Leave No Trace - CTXC</title>
</head>
<body>
<!--Navbar-->
<header>
<h1>
<a href="./index.html">Central Texas Conservation</a>
</h1>
<nav>
<ul>
<li>
<a href="./index.html#who-we-are">Who We Are</a>
</li>
<li>
<a href="./index.html#get-involved">Get Involved</a>
</li>
<li>
<a href="./index.html#team">Meet the Team</a>
</li>
<li>
<a href="./index.html#contact">Contact</a>
</li>
</ul>
</nav>
</header>
<!--Jumbotron-->
<section class="hero">
<h2 class="page-title">
Leave No Trace
</h2>
</section>
<!--Content-->
<section class="intro steps principles">
<h2>7 Principles</h2>
<figure>
<blockquote cite="https://lnt.org/why/7-principles/">
"The Seven Principles of Leave No Trace provide an easily understood framework
of minimum impact practices for anyone visiting the outdoors. Although
Leave No Trace has its roots in backcountry settings, the Principles
have been adapted so that they can be applied anywhere — from remote
wilderness areas, to local parks and even in your own backyard.
They also apply to almost every recreational activity. Each Principle covers
a specific topic and provides detailed information for minimizing impacts.
<br/>
<br/>
The Seven Principles are well established and widely known, but they
are not static. The Leave No Trace Center for Outdoor Ethics continually
examines, evaluates and reshapes the Principles. The Center’s Education
Department conducts research — including publishing scholarly articles
in independent journals — to ensure that the Principles are up to
date with the latest insights from biologists, land managers and other
leaders in outdoor education."
</blockquote>
<figcaption>
<cite><a href="https://lnt.org/why/7-principles/">Leave No Trace - Center for Outdoor Ethics</a></cite>
</figcaption>
</figure>
<div>
<img src="./assets/images/form.png" alt="" />
<h3>1. Plan Ahead & Prepare</h3>
<p>
Having a plan helps travelers and the land alike.
By considering adverse weather, terrain, and travel routes,
you can be prepared with the proper equipment and guidance
to keep yourself, and your surroundings, safe and unmarred.
</p>
</div>
<div>
<img src="./assets/images/tent.png" alt="" />
<h3>2. Travel & Camp on Durable Surfaces</h3>
<p>
Stay on the established path. By doing so, you can preserve surrounding
plant life and make less impact on wildlife that relies on the land
for survival. Straying from the path may cause erosion, endangerment
of local flora and fauna, and increases your likelihood of getting lost!
</p>
</div>
<div>
<img src="./assets/images/bin.png" alt="" />
<h3>3. Dispose of Waste Properly</h3>
<p>
Pack it in, pack it out. Carry all of your disposables with you until you
can find a proper bin to discard. Doing so keeps our forests clean and
clear of unsightly litter, and ensures the safety of plants and wildlife
from human impact.
</p>
</div>
<div>
<img src="./assets/images/trees.png" alt="" />
<h3>4. Leave What You Find</h3>
<p>
Leave nothing but footprints, take nothing but pictures. When departing
from a campsite, leave it exactly as you found it. When hiking, do not
disturb plants, rocks, artifacts, or park property. Help the environment
and other hikers by leaving the outdoors untouched.
</p>
</div>
<div>
<img src="./assets/images/campfire.png" alt="" />
<h3>5. Minimize Campfire Impacts</h3>
<p>
It is up to you to determine fire safety. Follow your local guidelines.
If traveling in a dry area, consider skipping the fire. If a campfire is
deemed safe to start, use existing fire rings, never leave a fire
unattended, and make sure fire is completely out before departing.
</p>
</div>
<div>
<img src="./assets/images/bear.png" alt="" />
<h3>6. Respect Wildlife</h3>
<p>
Protect yourself and wildlife by keeping a distance.
Educate yourself on the wildlife that exists in your area, and know
what to do in an encounter. Do not, under any circumstances,
feed the wildlife! It endangers you, the animals, and other visitors.
</p>
</div>
<div>
<img src="./assets/images/person.png" alt="" />
<h3>7. Be Considerate of Other Visitors</h3>
<p>
Always remember that you are not the only one trying to enjoy the
outdoors. Maintain courtesy of others by keeping noise to a minimum,
moving to the side for uphill hikers when traveling downhill, and
making your presence known if approaching from behind.
</p>
</div>
</section>
<!--Footer-->
<footer>
<h2>Est. 2021</h2>
<div>
© Central Texas Conservation
</div>
</footer>
</body>
</html>