-
Notifications
You must be signed in to change notification settings - Fork 656
/
SaveNature.html
633 lines (605 loc) · 22.4 KB
/
SaveNature.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Save Nature</title>
<link rel="stylesheet" href="./assets/css/SaveNature.css" />
</head>
<body>
<!-- #HEADER -->
<header class="header">
<div class="container">
<h1 class="logo">Save Nature</h1>
<nav class="nav">
<ul>
<li><a href="index.html">WildGuard</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#ecosystems">Ecosystems</a></li>
<li><a href="#sustainability">Sustainability</a></li>
<li><a href="#statistics">Statistics</a></li>
<li><a href="#how-to-help">How to Help</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- #MAIN -->
<main>
<article>
<!-- #HOME -->
<div class="section">
<div
class="container"
style="
max-width: 1200px;
width: 90%;
margin: 0 auto;
padding: 0 20px;
"
>
<h2
class="section-title"
style="
font-size: 2.5em;
color: #2e7d32;
text-align: center;
margin-bottom: 20px;
"
>
Welcome to Save Nature
</h2>
<p
class="line"
style="
font-size: 1.2em;
color: #555;
text-align: center;
margin-bottom: 30px;
"
>
Join us in our mission to protect our planet's ecosystems and
promote sustainable practices for a better future.
</p>
<div
style="
display: flex;
justify-content: center;
align-items: center;
padding-left: 50%;
"
>
<a
href="#get-involved"
class="btn"
style="
padding: 10px 20px;
background-color: #2e7d32;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
"
onmouseover="this.style.backgroundColor='#45a049'"
onmouseout="this.style.backgroundColor='#4caf50'"
>
Get Involved
</a>
</div>
</div>
</div>
<!-- #ABOUT -->
<section
class="section about"
id="about"
style="padding: 10px 0; margin: 20px 0"
>
<div
class="container"
style="
max-width: 1200px;
width: 90%;
margin: 0 auto;
display: flex; /* Use flexbox for layout */
flex-direction: column; /* Arrange items in a column */
align-items: center; /* Center items vertically */
padding: 0 20px;
"
>
<div style="text-align: left">
<h2
class="section-title"
style="font-size: 2.5em; color: #2e7d32; margin-bottom: 20px"
>
About Save Nature
</h2>
<p style="font-size: 1.2em; margin-bottom: 15px">
At Save Nature, we are dedicated to protecting biodiversity and
promoting sustainable practices for a healthy environment. Our
mission is to raise awareness about environmental issues and
encourage global action against climate change and habitat
destruction. Biodiversity is the foundation of healthy
ecosystems, yet it is declining rapidly. According to the World
Wildlife Fund (WWF), wildlife populations have decreased by 68%
since 1970, threatening essential ecosystem services like
pollination and water purification. An estimated 1 million
species are at risk of extinction, largely due to habitat loss
and pollution. The Intergovernmental Science-Policy Platform on
Biodiversity (IPBES) indicates we are witnessing an
unprecedented decline in biodiversity, impacting human health
and food security. We believe every individual can contribute to
preserving biodiversity by advocating for reforestation, habitat
protection, and sustainable practices. By adopting sustainable
lifestyle choices and supporting environmental policies, we can
create a positive impact. Our initiatives include organizing
tree-planting drives, educating the public on sustainable
living, collaborating with organizations for biodiversity
conservation, promoting renewable energy sources, and advocating
for endangered species protection. Our planet's future depends
on our actions today. Join us in our efforts to protect nature
and promote a sustainable future.
</p>
</div>
<div
style="
text-align: center; /* Center the image */
margin-top: 20px; /* Optional: add spacing between the text and the image */
"
>
<img
src="https://st5.depositphotos.com/29995906/65122/i/600/depositphotos_651225578-stock-photo-picture-planet-trees-top.jpg"
alt="Save Nature Image"
style="
max-width: 100%; /* Responsive image */
height: auto; /* Maintain aspect ratio */
border-radius: 10px; /* Optional: rounded corners */
"
/>
</div>
</div>
</section>
<!-- #ECOSYSTEMS -->
<section
class="section ecosystems"
id="ecosystems"
style="
padding: 40px 0;
margin: 40px 0;
background-image: url(https://helpsavenature.com/wp-content/uploads/2020/01/cropped-helpsavenature.jpg);
background-size: cover;
background-position: center;
color: white;
"
>
<div
class="container"
style="
max-width: 1200px;
width: 90%;
margin: 0 auto;
padding: 40px;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 10px;
"
>
<h2
class="section-title"
style="
font-size: 2.5em;
color: #ffffff;
text-align: center;
margin-bottom: 20px;
"
>
Ecosystems
</h2>
<p style="font-size: 1.2em; line-height: 1.5; margin-bottom: 15px">
Ecosystems are vital for our survival, providing clean air, water,
and habitat for wildlife. They regulate climate, cycle nutrients,
and supply resources for agriculture and clean drinking water.
</p>
<p style="font-size: 1.2em; line-height: 1.5; margin-bottom: 15px">
Preserving ecosystems maintains biodiversity, crucial for
resilience. Each species plays a role; the loss of one can disrupt
the entire system. Forests, wetlands, and coral reefs serve as
buffers against natural disasters.
</p>
<p style="font-size: 1.2em; line-height: 1.5; margin-bottom: 15px">
Unfortunately, ecosystems face threats from climate change and
pollution. Deforestation and urbanization have led to habitat
destruction. The United Nations Environment Programme (UNEP)
reports that over 75% of land-based ecosystems are significantly
altered by human activity.
</p>
<p style="font-size: 1.2em; line-height: 1.5; margin-bottom: 15px">
By raising awareness and advocating for ecosystem protection, we
can safeguard our planet's health. Conservation efforts, such as
restoring ecosystems and promoting sustainable land use, are
essential for reversing environmental degradation.
</p>
</div>
</section>
<!-- #SUSTAINABILITY -->
<section class="section sustainability" id="sustainability">
<div class="container" id="section-sustain">
<div
class="sustainability-content"
style="display: flex; align-items: center"
>
<div style="border-radius: 50%; padding-left: 0px">
<h2 class="section-title">Sustainability</h2>
<p>
Sustainability means meeting our needs without compromising
future generations. It involves responsible management of
resources and minimizing our ecological footprint.
</p>
<p>
By adopting sustainable practices like reducing waste and
conserving energy, we can positively impact the environment.
Transitioning to renewable sources such as solar and wind can
significantly reduce carbon emissions.
</p>
<p>
Sustainable agriculture and responsible consumption are also
key. Reducing food waste and choosing eco-friendly products
can lower our ecological footprint. The Food and Agriculture
Organization (FAO) estimates that one-third of global food is
wasted, indicating a need for efficiency.
</p>
<p>
Join us in promoting sustainability and protecting our planet.
Every small change counts, and together we can make a
difference through mindful choices and supporting green
initiatives.
</p>
</div>
<div
class="image-sustain"
style="
height: 100px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
padding-left: 80px;
"
>
<img
src="https://static.vecteezy.com/system/resources/previews/022/448/284/large_2x/save-earth-day-poster-environment-day-nature-green-ai-generative-glossy-background-images-tree-and-water-free-photo.jpg"
alt="nature"
height="10vw"
style="max-width: 100%; height: auto; border-radius: 50%"
/>
</div>
</div>
</div>
</section>
<!-- #STATISTICS -->
<section class="section statistics" id="statistics">
<div class="container">
<h2 class="section-title">Environmental Statistics</h2>
<p class="line">
Explore the key facts and statistics about the current state of
our environment:
</p>
<div class="stats-grid">
<!-- Deforestation Statistic -->
<div class="stat-item">
<div class="icon">
<img src="assets/images/tree-icon.png.png" alt="Tree Icon" />
</div>
<div class="stat-info">
<h3 class="stat-number">10M</h3>
<p class="stat-description">
Hectares of forests lost annually, contributing to
biodiversity loss.
</p>
</div>
</div>
<!-- Ocean Pollution Statistic -->
<div class="stat-item">
<div class="icon">
<img src="assets/images/ocean-icon.png" alt="Ocean Icon" />
</div>
<div class="stat-info">
<h3 class="stat-number">8M</h3>
<p class="stat-description">
Tons of plastic dumped into our oceans every year.
</p>
</div>
</div>
<!-- Carbon Emissions Statistic -->
<div class="stat-item">
<div class="icon">
<img src="assets/images/carbon-icon.png" alt="Carbon Icon" />
</div>
<div class="stat-info">
<h3 class="stat-number">50%</h3>
<p class="stat-description">
Increase in carbon dioxide levels since the Industrial
Revolution.
</p>
</div>
</div>
<!-- Species Extinction Statistic -->
<div class="stat-item">
<div class="icon">
<img
src="assets/images/species-icon.png"
alt="Species Icon"
/>
</div>
<div class="stat-info">
<h3 class="stat-number">1M+</h3>
<p class="stat-description">
Species are at risk of extinction due to human activity.
</p>
</div>
</div>
<!-- Water Scarcity Statistic -->
<div class="stat-item">
<div class="icon">
<img src="assets/images/water-icon.png" alt="Water Icon" />
</div>
<div class="stat-info">
<h3 class="stat-number">2.2B</h3>
<p class="stat-description">
People lack access to safe drinking water globally.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- #HOW-TO-HELP -->
<section class="section how-to-help" id="how-to-help">
<div class="container">
<h2 class="section-title">How You Can Help Save Nature</h2>
<p class="line">
Saving our planet starts with individual actions. Here are some
ways you can make a difference:
</p>
<div class="help-grid">
<!-- Reduce, Reuse, Recycle -->
<div class="help-item">
<div class="help-icon">
<img
src="assets/images/recycle-icon.png"
alt="Recycle Icon"
/>
</div>
<div class="help-info">
<h3>Reduce, Reuse, Recycle</h3>
<p>
Minimize waste by using fewer disposable products, recycling
materials, and reusing items.
</p>
</div>
</div>
<!-- Conserve Water -->
<div class="help-item">
<div class="help-icon">
<img src="assets/images/water-icon.png" alt="Water Icon" />
</div>
<div class="help-info">
<h3>Conserve Water</h3>
<p>
Take shorter showers, fix leaks, and use water-saving
devices to reduce water consumption.
</p>
</div>
</div>
<!-- Plant Trees -->
<div class="help-item">
<div class="help-icon">
<img src="assets/images/tree-icon.png.png" alt="Tree Icon" />
</div>
<div class="help-info">
<h3>Plant Trees</h3>
<p>
Trees absorb carbon dioxide, improve air quality, and
provide habitat for wildlife. Join tree-planting
initiatives.
</p>
</div>
</div>
<!-- Support Clean Energy -->
<div class="help-item">
<div class="help-icon">
<img src="assets/images/energy-icon.png" alt="Energy Icon" />
</div>
<div class="help-info">
<h3>Support Clean Energy</h3>
<p>
Switch to renewable energy sources such as solar and wind,
and reduce energy consumption at home.
</p>
</div>
</div>
<!-- Cut Down on Plastic -->
<div class="help-item">
<div class="help-icon">
<img
src="assets/images/plastic-icon.png"
alt="Plastic Icon"
/>
</div>
<div class="help-info">
<h3>Cut Down on Plastic</h3>
<p>
Avoid single-use plastics by opting for reusable bags,
bottles, and containers.
</p>
</div>
</div>
<!-- Get Involved -->
<div class="help-item">
<div class="help-icon">
<img
src="assets/images/community-icon.png"
alt="Community Icon"
/>
</div>
<div class="help-info">
<h3>Get Involved</h3>
<p>
Participate in local environmental groups or global
movements focused on conservation and sustainability.
</p>
</div>
</div>
<!-- Spread Awareness -->
<div class="help-item">
<div class="help-icon">
<img
src="assets/images/awareness-icon.png"
alt="Awareness Icon"
/>
</div>
<div class="help-info">
<h3>Spread Awareness</h3>
<p>
Educate others about the importance of protecting nature
through social media, events, or volunteering.
</p>
</div>
</div>
</div>
<p class="help-call-to-action">
Every small action adds up, and together we can make a big impact
on the future of our planet.
</p>
</div>
</section>
<!-- #CONTACT -->
<section
class="section contact"
id="contact"
style="
padding: 40px 0;
margin: 40px 0;
background-image: url(https://e1.pxfuel.com/desktop-wallpaper/165/739/desktop-wallpaper-bird-sparrow-nature-save-nature.jpg);
background-size: cover;
background-position: center;
color: white;
"
>
<div
class="container"
style="
max-width: 800px;
width: 90%;
margin: 0 auto;
padding: 40px;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 10px;
"
>
<h2
class="section-title"
style="
font-size: 2.5em;
color: #ffffff;
text-align: center;
margin-bottom: 20px;
"
>
Get in Touch
</h2>
<p
style="font-size: 1.2em; text-align: center; margin-bottom: 30px"
>
Have any questions or want to learn more about our initiatives?
Reach out to us!
</p>
<form
class="contact-form"
style="display: flex; flex-direction: column; gap: 15px"
>
<input
type="text"
placeholder="Your Name"
required
style="
padding: 15px;
font-size: 1em;
border: none;
border-radius: 5px;
"
/>
<input
type="email"
placeholder="Your Email"
required
style="
padding: 15px;
font-size: 1em;
border: none;
border-radius: 5px;
"
/>
<textarea
placeholder="Your Message"
required
style="
padding: 15px;
font-size: 1em;
border: none;
border-radius: 5px;
resize: vertical;
"
></textarea>
<button
class="btn"
type="submit"
style="
padding: 15px;
font-size: 1em;
background-color: #28a745;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
"
>
Send Message
</button>
</form>
</div>
</section>
</article>
</main>
<!-- #FOOTER -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div>
<h3>About Us</h3>
<p>
We are dedicated to protecting nature and educating the public
about environmental issues.
</p>
</div>
<div>
<h3>Contact Us</h3>
<p>Email: info@savenature.org</p>
<p>Phone: +123 456 7890</p>
</div>
<div>
<h3>Follow Us</h3>
<ul class="social-links">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Save Nature. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>