-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
660 lines (654 loc) · 40.9 KB
/
Copy pathindex.html
File metadata and controls
660 lines (654 loc) · 40.9 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
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
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
<!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" />
<meta name="description"
content="At Enviro, we plant trees and fund the world's best carbon offsetting solutions. Take real action against climate change. Sign up for your subscription today.">
<meta name="keywords"
content="environmental, climate change, web developer, web design, html, css, javascript, bootstrap">
<meta name="author" content="Max Lockwood">
<title>Enviro</title>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="assets/brand/favicon.ico">
<!-- Bootstrap core CSS -v 5.1.3 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" href="css/styles.css">
<!-- Bootstrap Icons -v 1.8.1 -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css">
</head>
<body>
<!-- Header & Navigation -->
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container py-1">
<a class="navbar-brand" href="#">
<img src="assets/brand/enviro-logo.svg" class="logo d-inline-block align-text-center"
alt="Enviro company logo" width="30" height="30"> Enviro
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
More info
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Blog</a></li>
<li><a class="dropdown-item" href="#business">Business</a></li>
<li><a class="dropdown-item" href="#collective-action">Collective Action</a></li>
<li><a class="dropdown-item" href="#">Features</a></li>
<li><a class="dropdown-item" href="#pricing">Pricing</a></li>
<li>
<hr class="dropdown-divider" />
</li>
<li><a class="dropdown-item" href="#contact">Contact us</a></li>
<li><a class="dropdown-item" href="#">FAQs</a></li>
</ul>
</li>
</ul>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search" />
<button class="btn btn-outline-success" type="submit">
Search
</button>
</form>
</div>
</div>
</nav>
</header>
<main class="my-5">
<div class="container">
<!-- Hero sign up section -->
<div id="signup" class="px-4 py-5 my-5 text-center bg-light">
<img class="d-block mx-auto mb-4" src="assets/brand/enviro-logo.svg" loading="lazy" alt="Enviro company logo"
width="72" height="57">
<h1 class="display-5 fw-bold">Become Climate Positive</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">Help restore the planet through a monthly subscription.
For less than the cost of a cup of coffee per week you can become climate positive</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<button type="button" class="btn btn-primary btn-lg px-4 gap-3">Sign up</button>
</div>
</div>
</div>
<!-- Information section -->
<div class="col-xxl-12 px-4">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-12 col-sm-8 col-lg-6">
<img class="d-block mx-lg-auto img-fluid rounded-3" src="assets/images/tree-planting.jpg" loading="lazy"
alt="Planting a tree in soil" width="700" height="500" loading="lazy">
</div>
<div class="col-lg-6">
<h2 class="display-5 fw-bold lh-1 mb-3">Help restore the planet</h2>
<p class="lead">There are billions of concerned people on this planet who care, but don't know how to make a
meaningful contribution. If we can get the right platform that allows us to make the impact we want to,
and continue the process of carbon awareness then there's an amazing opportunity.</p>
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
<button type="button" class="btn btn-primary btn-lg px-4 me-md-2">More Info</button>
</div>
</div>
</div>
</div>
<!-- Banner message -->
<div class="row mt-5">
<div class="col">
<div class="bg-secondary text-white py-3 text-center">
<div class="card-body">
<h1 class="display-6 m-0">Reforestation benefits the earth and local communities</h1>
</div>
</div>
</div>
</div>
<!-- Three column explainer -->
<div class="row my-4 row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card">
<img src="assets/images/forest.jpg" loading="lazy" class="card-img-top" alt="Forest canopy">
<div class="card-body">
<h4 class="card-title fw-bold">Grow your own forest</h4>
<p class="card-text">Plant at least 12 trees per month and watch your forest grow. You'll be creating
employment for local families and restoring wildlife habitats.</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<img src="assets/images/solar-energy.jpg" loading="lazy" class="card-img-top"
alt="Man installing solar panels">
<div class="card-body">
<h4 class="card-title fw-bold">Reduce carbon pollution</h4>
<p class="card-text">Give back more to the planet than you take. You'll fund the highest standard climate
projects to accelerate our transition to a sustainable future.</p>
</div>
</div>
</div>
<div class="col">
<div class="card">
<img src="assets/images/woman-journaling.jpg" loading="lazy" class="card-img-top"
alt="Woman making notes in a journal">
<div class="card-body">
<h4 class="card-title fw-bold">Challenge your carbon footprint</h4>
<p class="card-text">Set yourself goals and embark on the rewarding journey to low-carbon living. Once
you become aware you won't stop!</p>
</div>
</div>
</div>
</div>
<!-- Sign up section -->
<div class="px-4 py-5 my-5 text-center bg-info text-white">
<div class="col-lg-8 mx-auto">
<h2 class="mb-4">Feel empowered, challenged and inspired. Join us and take real climate action.</h2>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<button type="button" class="btn btn-primary btn-lg px-4 gap-3">Join Today</button>
</div>
</div>
</div>
<!-- Customers section -->
<div class="customers">
<!-- Three columns of customer profiles-->
<h2 class="display-5 fw-bold text-center mb-4">What our customers say</h2>
<div class="row">
<div class="col-lg-4">
<img class="rounded-circle" width="140" height="140" src="assets/customers/ajay-bakshi-profile.jpg"
loading="lazy" alt="customer profile picture">
<h3 class="mt-2">Ajay Bakshi</h3>
<p>"I was overjoyed to have come across Enviro. Seeing my contributions go to real projects that make a real
difference."</p>
<p><a class="btn btn-primary" href="#">View profile »</a></p>
</div>
<div class="col-lg-4">
<img class="rounded-circle" width="140" height="140" src="assets/customers/jasmine-cole-profile.jpg"
loading="lazy" alt="customer profile picture">
<h3 class="mt-2">Jasmine Cole</h3>
<p>"Being able to contribute to a firm that I know is ecologically conscientious and doing good in the world
is quite reassuring."</p>
<p><a class="btn btn-primary" href="#">View profile »</a></p>
</div>
<div class="col-lg-4">
<img class="rounded-circle" width="140" height="140" src="assets/customers/brett-sayles-profile.jpg"
loading="lazy" alt="customer profile picture">
<h3 class="mt-2">Brett Sayles</h3>
<p>"Enviro is a fantastic option for assisting us in achieving our net-zero carbon footprint target. I
highly recommend joining them."</p>
<p><a class="btn btn-primary" href="#">View profile »</a></p>
</div>
</div>
</div>
<!-- Projects section -->
<div class="px-4 py-5" id="projects">
<h2 class="display-5 fw-bold text-center">Recent projects</h2>
<div class="row g-4 py-5 row-cols-1 row-cols-lg-3">
<div class="col d-flex align-items-start">
<div class="icon-square bg-tan text-dark flex-shrink-0 me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor"
class="bi bi-tree-fill" viewBox="0 0 16 16">
<path
d="M8.416.223a.5.5 0 0 0-.832 0l-3 4.5A.5.5 0 0 0 5 5.5h.098L3.076 8.735A.5.5 0 0 0 3.5 9.5h.191l-1.638 3.276a.5.5 0 0 0 .447.724H7V16h2v-2.5h4.5a.5.5 0 0 0 .447-.724L12.31 9.5h.191a.5.5 0 0 0 .424-.765L10.902 5.5H11a.5.5 0 0 0 .416-.777l-3-4.5z" />
</svg>
</div>
<div>
<h3>Amazon protection</h3>
<p>We'll be supporting the protection of 98,932 hectares of Amazonian rainforest in south-east Peru. Each
year, 659,793 tonnes of CO2e will be prevented from entering the atmosphere if this land is protected..
</p>
<a href="#" class="icon-link">
Read more
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor"
class="bi bi-chevron-right" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z" />
</svg>
</a>
</div>
</div>
<div class="col d-flex align-items-start">
<div class="icon-square bg-tan text-dark flex-shrink-0 me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor"
class="bi bi-droplet-fill" viewBox="0 0 16 16">
<path
d="M8 16a6 6 0 0 0 6-6c0-1.655-1.122-2.904-2.432-4.362C10.254 4.176 8.75 2.503 8 0c0 0-6 5.686-6 10a6 6 0 0 0 6 6ZM6.646 4.646l.708.708c-.29.29-1.128 1.311-1.907 2.87l-.894-.448c.82-1.641 1.717-2.753 2.093-3.13Z" />
</svg>
</div>
<div>
<h3>Malawi clean water</h3>
<p> 1 in 3 people in Malawi do not have access to clean water. We are providing communities in Malawi with
direct access to safe drinking water.</p>
<a href="#" class="icon-link">
Read more
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor"
class="bi bi-chevron-right" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z" />
</svg>
</a>
</div>
</div>
<div class="col d-flex align-items-start">
<div class="icon-square bg-tan text-dark flex-shrink-0 me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor"
class="bi bi-lightning-charge-fill" viewBox="0 0 16 16">
<path
d="M11.251.068a.5.5 0 0 1 .227.58L9.677 6.5H13a.5.5 0 0 1 .364.843l-8 8.5a.5.5 0 0 1-.842-.49L6.323 9.5H3a.5.5 0 0 1-.364-.843l8-8.5a.5.5 0 0 1 .615-.09z" />
</svg>
</div>
<div>
<h3>Chile landfill gas capture</h3>
<p>The landfill gas at the Santa Marta landfill site in Chile is being converted into electricity. The
implementation of this project will prevent environmentally damaging methane from being released into
the atmosphere.</p>
<a href="#" class="icon-link">
Read more
<svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" fill="currentColor"
class="bi bi-chevron-right" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z" />
</svg>
</a>
</div>
</div>
</div>
</div>
<!-- About us section -->
<div id="about" class="px-4 py-5 my-5 text-center bg-light">
<h2 class="display-5 fw-bold">About us</h2>
<h3 class="mb-3">We created Enviro so people like you can actually take on the climate crisis</h3>
<div class="col-lg-8 mx-auto">
<p class="lead">Enviro was formed in San Francisco, CA, by a group of environmentalists. They were
dissatisfied because many of us are unable to contribute adequately to the massive climate crisis.</p>
<p class="lead">It began in early 2018, while Chris was on his way to work in the morning. He was buying
a coffee, as he had done thousands of times before, and he wondered aloud to himself, "How much climate
action could I fund with the money I spent on a coffee?"</p>
</div>
</div>
<!-- Features section -->
<div id="features" class="px-4 py-5">
<h2 class="display-5 fw-bold text-center">Features</h2>
<h3 class="fw-light text-center">A selection of features included in your plan</h3>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 row-cols-lg-4 g-4 py-5">
<div class="col d-flex align-items-start">
<svg class="bi text-primary flex-shrink-0 me-3" width="1.75em" height="1.75em"
xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-tree"
viewBox="0 0 16 16">
<path
d="M8.416.223a.5.5 0 0 0-.832 0l-3 4.5A.5.5 0 0 0 5 5.5h.098L3.076 8.735A.5.5 0 0 0 3.5 9.5h.191l-1.638 3.276a.5.5 0 0 0 .447.724H7V16h2v-2.5h4.5a.5.5 0 0 0 .447-.724L12.31 9.5h.191a.5.5 0 0 0 .424-.765L10.902 5.5H11a.5.5 0 0 0 .416-.777l-3-4.5zM6.437 4.758A.5.5 0 0 0 6 4.5h-.066L8 1.401 10.066 4.5H10a.5.5 0 0 0-.424.765L11.598 8.5H11.5a.5.5 0 0 0-.447.724L12.69 12.5H3.309l1.638-3.276A.5.5 0 0 0 4.5 8.5h-.098l2.022-3.235a.5.5 0 0 0 .013-.507z" />
</svg>
<div>
<h4 class="fw-bold mb-0">Trees Planted</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-primary flex-shrink-0 me-3" width="1.75em" height="1.75em"
xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-cloud"
viewBox="0 0 16 16">
<path
d="M4.406 3.342A5.53 5.53 0 0 1 8 2c2.69 0 4.923 2 5.166 4.579C14.758 6.804 16 8.137 16 9.773 16 11.569 14.502 13 12.687 13H3.781C1.708 13 0 11.366 0 9.318c0-1.763 1.266-3.223 2.942-3.593.143-.863.698-1.723 1.464-2.383zm.653.757c-.757.653-1.153 1.44-1.153 2.056v.448l-.445.049C2.064 6.805 1 7.952 1 9.318 1 10.785 2.23 12 3.781 12h8.906C13.98 12 15 10.988 15 9.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 4.825 10.328 3 8 3a4.53 4.53 0 0 0-2.941 1.1z" />
</svg>
<div>
<h4 class="fw-bold mb-0">Carbon Reduction</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-primary flex-shrink-0 me-3" width="1.75em" height="1.75em"
xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-globe"
viewBox="0 0 16 16">
<path
d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855A7.97 7.97 0 0 0 5.145 4H7.5V1.077zM4.09 4a9.267 9.267 0 0 1 .64-1.539 6.7 6.7 0 0 1 .597-.933A7.025 7.025 0 0 0 2.255 4H4.09zm-.582 3.5c.03-.877.138-1.718.312-2.5H1.674a6.958 6.958 0 0 0-.656 2.5h2.49zM4.847 5a12.5 12.5 0 0 0-.338 2.5H7.5V5H4.847zM8.5 5v2.5h2.99a12.495 12.495 0 0 0-.337-2.5H8.5zM4.51 8.5a12.5 12.5 0 0 0 .337 2.5H7.5V8.5H4.51zm3.99 0V11h2.653c.187-.765.306-1.608.338-2.5H8.5zM5.145 12c.138.386.295.744.468 1.068.552 1.035 1.218 1.65 1.887 1.855V12H5.145zm.182 2.472a6.696 6.696 0 0 1-.597-.933A9.268 9.268 0 0 1 4.09 12H2.255a7.024 7.024 0 0 0 3.072 2.472zM3.82 11a13.652 13.652 0 0 1-.312-2.5h-2.49c.062.89.291 1.733.656 2.5H3.82zm6.853 3.472A7.024 7.024 0 0 0 13.745 12H11.91a9.27 9.27 0 0 1-.64 1.539 6.688 6.688 0 0 1-.597.933zM8.5 12v2.923c.67-.204 1.335-.82 1.887-1.855.173-.324.33-.682.468-1.068H8.5zm3.68-1h2.146c.365-.767.594-1.61.656-2.5h-2.49a13.65 13.65 0 0 1-.312 2.5zm2.802-3.5a6.959 6.959 0 0 0-.656-2.5H12.18c.174.782.282 1.623.312 2.5h2.49zM11.27 2.461c.247.464.462.98.64 1.539h1.835a7.024 7.024 0 0 0-3.072-2.472c.218.284.418.598.597.933zM10.855 4a7.966 7.966 0 0 0-.468-1.068C9.835 1.897 9.17 1.282 8.5 1.077V4h2.355z" />
</svg>
<div>
<h4 class="fw-bold mb-0">Climate positive</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-primary flex-shrink-0 me-3" width="1.75em" height="1.75em"
xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-card-checklist"
viewBox="0 0 16 16">
<path
d="M14.5 3a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-13a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h13zm-13-1A1.5 1.5 0 0 0 0 3.5v9A1.5 1.5 0 0 0 1.5 14h13a1.5 1.5 0 0 0 1.5-1.5v-9A1.5 1.5 0 0 0 14.5 2h-13z" />
<path
d="M7 5.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm-1.496-.854a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 1 1 .708-.708l.146.147 1.146-1.147a.5.5 0 0 1 .708 0zM7 9.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5zm-1.496-.854a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 0 1 .708-.708l.146.147 1.146-1.147a.5.5 0 0 1 .708 0z" />
</svg>
<div>
<h4 class="fw-bold mb-0">Projects</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-primary flex-shrink-0 me-3" width="1.75em" height="1.75em"
xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-people"
viewBox="0 0 16 16">
<path
d="M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1h8zm-7.978-1A.261.261 0 0 1 7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002a.274.274 0 0 1-.014.002H7.022zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0zM6.936 9.28a5.88 5.88 0 0 0-1.23-.247A7.35 7.35 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.238 2.238 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816zM4.92 10A5.493 5.493 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275zM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0zm3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4z" />
</svg>
<div>
<h4 class="fw-bold mb-0">Community Forum</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-primary flex-shrink-0 me-3" width="1.75em" height="1.75em"
xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-bar-chart"
viewBox="0 0 16 16">
<path
d="M4 11H2v3h2v-3zm5-4H7v7h2V7zm5-5v12h-2V2h2zm-2-1a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1h-2zM6 7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7zm-5 4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-3z" />
</svg>
<div>
<h4 class="fw-bold mb-0">Leaderboards</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-primary flex-shrink-0 me-3" width="1.75em" height="1.75em"
xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-gift"
viewBox="0 0 16 16">
<path
d="M3 2.5a2.5 2.5 0 0 1 5 0 2.5 2.5 0 0 1 5 0v.006c0 .07 0 .27-.038.494H15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1v7.5a1.5 1.5 0 0 1-1.5 1.5h-11A1.5 1.5 0 0 1 1 14.5V7a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h2.038A2.968 2.968 0 0 1 3 2.506V2.5zm1.068.5H7v-.5a1.5 1.5 0 1 0-3 0c0 .085.002.274.045.43a.522.522 0 0 0 .023.07zM9 3h2.932a.56.56 0 0 0 .023-.07c.043-.156.045-.345.045-.43a1.5 1.5 0 0 0-3 0V3zM1 4v2h6V4H1zm8 0v2h6V4H9zm5 3H9v8h4.5a.5.5 0 0 0 .5-.5V7zm-7 8V7H2v7.5a.5.5 0 0 0 .5.5H7z" />
</svg>
<div>
<h4 class="fw-bold mb-0">Gifts</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
<div class="col d-flex align-items-start">
<svg class="bi text-primary flex-shrink-0 me-3" width="1.75em" height="1.75em"
xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chat-left-dots"
viewBox="0 0 16 16">
<path
d="M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1H4.414A2 2 0 0 0 3 11.586l-2 2V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v12.793a.5.5 0 0 0 .854.353l2.853-2.853A1 1 0 0 1 4.414 12H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z" />
<path
d="M5 6a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0z" />
</svg>
<div>
<h4 class="fw-bold mb-0">Support</h4>
<p>Paragraph of text beneath the heading to explain the heading.</p>
</div>
</div>
</div>
</div>
<!-- Pricing section -->
<div id="pricing" class="pricing-header p-3 pb-md-4 col-lg-8 mx-auto text-center">
<h1 class="display-5 fw-bold">Pricing</h1>
<h3 class="mb-2">Select your monthly plan</h3>
<p class="lead">Plant trees and offset your carbon footprint</p>
</div>
<div class="row row-cols-1 row-cols-md-3 mb-4 text-center">
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Helper</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title mb-3">$10.50<small class="text-muted fw-light">/mo</small></h1>
<div class="price-circle">
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" fill="#fff" class="bi bi-tree"
viewBox="0 0 16 16">
<path
d="M8.416.223a.5.5 0 0 0-.832 0l-3 4.5A.5.5 0 0 0 5 5.5h.098L3.076 8.735A.5.5 0 0 0 3.5 9.5h.191l-1.638 3.276a.5.5 0 0 0 .447.724H7V16h2v-2.5h4.5a.5.5 0 0 0 .447-.724L12.31 9.5h.191a.5.5 0 0 0 .424-.765L10.902 5.5H11a.5.5 0 0 0 .416-.777l-3-4.5zM6.437 4.758A.5.5 0 0 0 6 4.5h-.066L8 1.401 10.066 4.5H10a.5.5 0 0 0-.424.765L11.598 8.5H11.5a.5.5 0 0 0-.447.724L12.69 12.5H3.309l1.638-3.276A.5.5 0 0 0 4.5 8.5h-.098l2.022-3.235a.5.5 0 0 0 .013-.507z" />
</svg>
</div>
<p class="mt-3">The ideal sized plan for an average US citizen to get started.</p>
<ul class="list-unstyled mt-3 mb-4">
<li>12 trees planted</li>
<li>1 footprint reduced</li>
<li>Email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="w-100 btn btn-lg btn-primary">Choose Plan</button>
</div>
</div>
</div>
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Booster</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title mb-3">$21<small class="text-muted fw-light">/mo</small></h1>
<div class="price-circle">
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" fill="#fff" class="bi bi-tree"
viewBox="0 0 16 16">
<path
d="M8.416.223a.5.5 0 0 0-.832 0l-3 4.5A.5.5 0 0 0 5 5.5h.098L3.076 8.735A.5.5 0 0 0 3.5 9.5h.191l-1.638 3.276a.5.5 0 0 0 .447.724H7V16h2v-2.5h4.5a.5.5 0 0 0 .447-.724L12.31 9.5h.191a.5.5 0 0 0 .424-.765L10.902 5.5H11a.5.5 0 0 0 .416-.777l-3-4.5zM6.437 4.758A.5.5 0 0 0 6 4.5h-.066L8 1.401 10.066 4.5H10a.5.5 0 0 0-.424.765L11.598 8.5H11.5a.5.5 0 0 0-.447.724L12.69 12.5H3.309l1.638-3.276A.5.5 0 0 0 4.5 8.5h-.098l2.022-3.235a.5.5 0 0 0 .013-.507z" />
</svg>
</div>
<p class="mt-3">The plan for those people who drive or fly more frequently.</p>
<ul class="list-unstyled mt-3 mb-4">
<li>24 trees planted</li>
<li>2 footprints reduced</li>
<li>Priority email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="w-100 btn btn-lg btn-primary">Choose Plan</button>
</div>
</div>
</div>
<div class="col">
<div class="card mb-4 rounded-3 shadow-sm">
<div class="card-header py-3">
<h4 class="my-0 fw-normal">Mega</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title mb-3">$42<small class="text-muted fw-light">/mo</small></h1>
<div class="price-circle">
<svg xmlns="http://www.w3.org/2000/svg" width="26" height="26" fill="#fff" class="bi bi-tree"
viewBox="0 0 16 16">
<path
d="M8.416.223a.5.5 0 0 0-.832 0l-3 4.5A.5.5 0 0 0 5 5.5h.098L3.076 8.735A.5.5 0 0 0 3.5 9.5h.191l-1.638 3.276a.5.5 0 0 0 .447.724H7V16h2v-2.5h4.5a.5.5 0 0 0 .447-.724L12.31 9.5h.191a.5.5 0 0 0 .424-.765L10.902 5.5H11a.5.5 0 0 0 .416-.777l-3-4.5zM6.437 4.758A.5.5 0 0 0 6 4.5h-.066L8 1.401 10.066 4.5H10a.5.5 0 0 0-.424.765L11.598 8.5H11.5a.5.5 0 0 0-.447.724L12.69 12.5H3.309l1.638-3.276A.5.5 0 0 0 4.5 8.5h-.098l2.022-3.235a.5.5 0 0 0 .013-.507z" />
</svg>
</div>
<p class="mt-3">For regular flyers, or folks who want to make a bigger contribution.</p>
<ul class="list-unstyled mt-3 mb-4">
<li>48 trees planted</li>
<li>4 footprints reduced</li>
<li>Phone and email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="w-100 btn btn-lg btn-primary">Choose Plan</button>
</div>
</div>
</div>
</div>
<!-- Business section -->
<div id="business" class="business p-3 pb-md-4 col-lg-10 mx-auto text-center">
<h2 class="display-5 fw-bold text-center">Business</h2>
<h3 class="mb-2 fw-light text-center">Climate action comes in all shapes and sizes, browse our products below
</h3>
</div>
<div class="col-xxl-12 px-4 mb-4">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-12 col-sm-8 col-lg-6">
<img class="d-block mx-lg-auto img-fluid rounded-3" src="assets/images/business-work.jpg" loading="lazy"
alt="A business team collaborating on a project" width="700" height="500" loading="lazy">
</div>
<div class="col-lg-6">
<h2 class="display-5 fw-bold lh-1 mb-3">Climate Positive Workforce</h2>
<p class="lead">With our Climate Positive Workforce, we're here to assist your company in taking its first
essential steps toward climate action. Set your complete team's personal and professional lives in
balance, then see the influence grow on your profile and plant trees in your corporate forest. This is a
benefit that will not only benefit your employees, but also your consumers.</p>
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
<button type="button" class="btn btn-primary btn-lg px-4 me-md-2">Get Started</button>
</div>
</div>
</div>
</div>
<!-- Collective Action section -->
<div id="collective-action" class="px-4 py-5 my-5 text-center bg-info text-white">
<h2 class="display-5 fw-bold">What is Collective Action?</h2>
<div class="col-lg-8 mx-auto">
<p class="lead">The global difficulties we face, such as the climate crisis, are intimidating at best and
hopeless at worst.</p>
<p class="lead">We can make a difference by banding together to meet the greatest challenge of our
lives. We can make real,
tangible change with a little help from a lot of people. What could we all do if millions joined our
movement? Our Enviro community has already accomplished remarkable things; what could we all achieve if
millions joined our movement?</p>
<p class="lead mb-4">Your assistance is required by the planet.
Let's turn the climate problem around.
Take part in the movement.</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<button type="button" class="btn btn-primary btn-lg px-4 gap-3">Join the movement</button>
</div>
</div>
</div>
<!-- Contact Form -->
<div id="contact" class="row">
<div class="col-lg-8 col-md-12 col-sm-6 col-xs-6 mx-auto">
<div class="px-4 py-5 bg-light">
<div class="text-center">
<h2>Get in touch</h2>
<p class="lead">Questions? Do not hesitate to contact us.</p>
</div>
<div class="row justify-content-center mt-5">
<div class="col-lg-6">
<form method="post" action="contact.php">
<div>
<label for="name" class="form-label">Full Name</label>
<input type="text" id="name" name="name" placeholder="Full Name" class="form-control" required />
</div>
<div class="my-2">
<label for="email" class="form-label">Email Address</label>
<input type="email" id="email" name="email" placeholder="name@example.com" class="form-control"
required />
</div>
<label for="subject" class="form=label mb-2">Subject</label>
<select id="subject" name="subject" class="form-select">
<option value="pricing">Account</option>
<option value="pricing">Pricing</option>
<option value="technical" selected>Technical support</option>
<option value="other">Other</option>
</select>
<div class="my-4">
<textarea id="message" name="message" style="height: 150px" class="form-control"
placeholder="Write your message..."></textarea>
</div>
<div class="d-grid col-6 mx-auto text-center">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- Footer -->
<div class="container-fluid bg-dark">
<div class="container">
<footer class="py-5">
<div class="row">
<!-- Footer column -->
<div class="col-lg-2 col-md-2 col-sm-3 mb-4 text-white">
<h5>About Enviro</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="#" class="nav-link link-secondary p-0">Home</a></li>
<li class="nav-item mb-2"><a href="#signup" class="nav-link link-secondary p-0">Sign up</a></li>
<li class="nav-item mb-2"><a href="#about" class="nav-link link-secondary p-0">About us</a></li>
<li class="nav-item mb-2"><a href="#projects" class="nav-link link-secondary p-0">Projects</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link link-secondary p-0">FAQs</a></li>
<li class="nav-item mb-2"><a href="#business" class="nav-link link-secondary p-0">Business</a></li>
<li class="nav-item mb-2"><a href="#pricing" class="nav-link link-secondary p-0">Pricing</a></li>
</ul>
</div>
<!-- Footer column -->
<div class="col-lg-2 col-md-2 col-sm-3 mb-4 text-white">
<h5>Members</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="#" class="nav-link link-secondary p-0">Sign in</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link link-secondary p-0">Blog</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link link-secondary p-0">Community Forum</a></li>
<li class="nav-item mb-2"><a href="#" class="nav-link link-secondary p-0">Leaderboards</a></li>
</ul>
</div>
<!-- Footer column -->
<div class="col-lg-2 col-md-2 col-sm-3 mb-4 text-white">
<h5>Contact</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="mailto:name@example.com" class="nav-link link-secondary p-0">Email
us</a>
</li>
<li class="nav-item mb-2"><a href="#contact" class="nav-link link-secondary p-0">Send us a message</a>
</li>
<li class="nav-item mb-2"><a href="#contact" class="nav-link link-secondary p-0">Leave feedback</a></li>
</ul>
</div>
<!-- Newsletter subscription -->
<div class="col-lg-5 col-md-5 offset-lg-1 offset-md-1 mb-4">
<form>
<h5 class="text-white">Subscribe to our newsletter</h5>
<p class="text-muted">Monthly digest of whats new and exciting from us.</p>
<div class="d-flex w-100 gap-2">
<label for="newsletter1" class="visually-hidden">Email address</label>
<input id="newsletter1" type="text" class="form-control" placeholder="Email address">
<button class="btn btn-primary" type="button">Subscribe</button>
</div>
</form>
</div>
</div>
<!-- Copyright and social media icons -->
<div class="d-flex justify-content-between pt-4 mt-4 border-top">
<p class="text-white">Copyright © <span id="currentYear">2022</span> Enviro. All rights reserved.
</p>
<ul class="list-unstyled d-flex">
<!-- Twitter -->
<li class="ms-3"><a class="link-social" href="#"><svg xmlns="http://www.w3.org/2000/svg" width="24"
height="24" fill="#6c757d" class="bi bi-twitter" viewBox="0 0 16 16">
<path
d="M5.026 15c6.038 0 9.341-5.003 9.341-9.334 0-.14 0-.282-.006-.422A6.685 6.685 0 0 0 16 3.542a6.658 6.658 0 0 1-1.889.518 3.301 3.301 0 0 0 1.447-1.817 6.533 6.533 0 0 1-2.087.793A3.286 3.286 0 0 0 7.875 6.03a9.325 9.325 0 0 1-6.767-3.429 3.289 3.289 0 0 0 1.018 4.382A3.323 3.323 0 0 1 .64 6.575v.045a3.288 3.288 0 0 0 2.632 3.218 3.203 3.203 0 0 1-.865.115 3.23 3.23 0 0 1-.614-.057 3.283 3.283 0 0 0 3.067 2.277A6.588 6.588 0 0 1 .78 13.58a6.32 6.32 0 0 1-.78-.045A9.344 9.344 0 0 0 5.026 15z" />
</svg></a></li>
<!-- Instagram -->
<li class="ms-3"><a class="link-social" href="#"><svg xmlns="http://www.w3.org/2000/svg" width="24"
height="24" fill="#6c757d" class="bi bi-instagram" viewBox="0 0 16 16">
<path
d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z" />
</svg></a></li>
<!-- Facebook -->
<li class="ms-3"><a class="link-social" href="#"><svg xmlns="http://www.w3.org/2000/svg" width="24"
height="24" fill="#6c757d" class="bi bi-facebook" viewBox="0 0 16 16">
<path
d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z" />
</svg></a></li>
</ul>
</div>
<!-- Back to top button -->
<button type="button" class="btn btn-primary btn-floating" id="btn-back-to-top">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="#1f363d" class="bi bi-arrow-up-short"
viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M8 12a.5.5 0 0 0 .5-.5V5.707l2.146 2.147a.5.5 0 0 0 .708-.708l-3-3a.5.5 0 0 0-.708 0l-3 3a.5.5 0 1 0 .708.708L7.5 5.707V11.5a.5.5 0 0 0 .5.5z" />
</svg>
</button>
</footer>
</div>
</div>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"
integrity="sha384-7+zCNj/IqJ95wo16oMtfsKbZ9ccEh31eOz1HGyDuCQ6wgnyJNSYdrPa03rtR1zdB"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js"
integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13"
crossorigin="anonymous"></script>
<!-- Custom scripts -->
<script src="js/script.js"></script>
</body>
</html>