-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1799 lines (1225 loc) · 76.2 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
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
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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">
<link rel="shortcut icon" type="image/x-icon" href="img/earth-removebg-preview.png">
<!--
- primary meta tags
-->
<title>Climate Change - Landing Page</title>
<meta name="title" content="CLIMATE CHANGE LANDING PAGE">
<meta name="description" content="This is a climate change landing page of group 2 a semstral project in Environmental Science">
<!--
- favicon
-->
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet">
<!--
- custom css link
-->
<link rel="stylesheet" href="CLimate_change.css">
<!--
- preload images
-->
<link rel="preload" as="image" href="./assets/images/hero-banner.png">
<link rel="preload" as="image" href="./assets/images/pattern-2.svg">
<link rel="preload" as="image" href="./assets/images/pattern-3.svg">
</head>
<body id="top">
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<a href="#" class="logo">
<img src="img/earth-removebg-preview.png" width="119" height="37" alt="Wren logo">
</a>
<nav class="navbar" data-navbar>
<div class="navbar-top">
<a href="#" class="logo">
<img src="img/earth-removebg-preview.png" width="119" height="37" alt="Wren logo">
</a>
<button class="nav-close-btn" aria-label="close menu" data-nav-toggler>
<ion-icon name="close-outline" aria-hidden="true"></ion-icon>
</button>
</div>
<ul class="navbar-list">
<li>
<a href="#home" class="navbar-link hover-1" data-nav-toggler>Home</a>
</li>
<li>
<a href="#featured" class="navbar-link hover-1" data-nav-toggler>Climate Post</a>
</li>
<li>
<a href="#camp_tags" class="navbar-link hover-1" data-nav-toggler>Tips</a>
</li>
<li>
<a href="#recent" class="navbar-link hover-1" data-nav-toggler>Featured</a>
</li>
<li>
<a href="#cont" class="navbar-link hover-1" data-nav-toggler>Contact</a>
</li>
</ul>
<div class="navbar-bottom">
<div class="profile-card">
<img src="img/earth-removebg-preview.png" width="48" height="48" alt="Steven" class="profile-banner">
<div>
<p class="card-title">Hello Spartan !</p>
<p class="card-subtitle">
You have 3 new messages
</p>
</div>
</div>
<ul class="link-list">
<li>
<a href="#" class="navbar-bottom-link hover-1">Profile</a>
</li>
<li>
<a href="#" class="navbar-bottom-link hover-1">Articles Saved</a>
</li>
<li>
<a href="#" class="navbar-bottom-link hover-1">Add New Post</a>
</li>
<li>
<a href="#" class="navbar-bottom-link hover-1">My Likes</a>
</li>
<li>
<a href="#" class="navbar-bottom-link hover-1">Account Setting</a>
</li>
<li>
<a href="#" class="navbar-bottom-link hover-1">Sign Out</a>
</li>
</ul>
</div>
<p class="copyright-text">
Copyright 2024 © Climate Change - Landing Page.
Developed by crlsbrook
</p>
</nav>
<a href="#" class="btn btn-primary">Subscribe</a>
<button class="nav-open-btn" aria-label="open menu" data-nav-toggler>
<ion-icon name="menu-outline" aria-hidden="true"></ion-icon>
</button>
</div>
</header>
<main>
<article>
<!--
- #HERO
-->
<section class="hero" id="home" aria-label="home">
<div class="container">
<div class="hero-content">
<p class="hero-subtitle">Protect our Mother Earth from</p>
<h1 class="headline headline-1 section-title">
Climate <span class="span">Change</span>
</h1>
<p class="hero-text">
Climate change, fueled by human activities like burning fossil fuels, is causing rising temperatures, extreme weather, and ecological disruptions. Urgent action is needed to shift to renewable energy, build resilience, and curb emissions for a sustainable future.
</p>
<a class="CC_readmore" href="https://www.un.org/en/global-issues/climate-change">
Read More
</a>
<div class="input-wrapper">
<input type="email" name="email_address" placeholder="Type your email address" required
class="input-field" autocomplete="off">
<button class="btn btn-primary">
<span class="span">Subscribe</span>
<ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
</button>
</div>
</div>
<div class="hero-banner">
<img src="img/earth-removebg-preview.png" width="327" height="490" alt="Wren Clark" class="w-100">
<img src="img/v983-601-removebg-preview.png" width="27" height="26" alt="shape" class="shape shape-1">
<img src="img/Mercury_planet_or_foreign_planet_-9-removebg-preview.png" width="27" height="26" alt="shape" class="shape shape-2">
</div>
</div>
</section>
<!--
- #TOPICS
-->
<section class="topics" id="topics" aria-labelledby="topic-label">
<div class="container">
<div class="card topic-card">
<div class="card-content">
<h2 class="headline headline-2 section-title card-title" id="topic-label">
Keep Track
</h2>
<p class="card-text">
Over the past week, the heat index peaked at 42°C midweek, dropped to 35-38°C, and rose to 40°C by the weekend. Stay cool and hydrated.
</p>
<div class="btn-group">
<button class="btn-icon" aria-label="previous" data-slider-prev>
<ion-icon name="arrow-back" aria-hidden="true"></ion-icon>
</button>
<button class="btn-icon" aria-label="next" data-slider-next>
<ion-icon name="arrow-forward" aria-hidden="true"></ion-icon>
</button>
</div>
</div>
<div class="slider" data-slider>
<ul class="slider-list" data-slider-container>
<li class="slider-item">
<a href="https://www.google.com/search?q=weather&sca_esv=4490efdd07ced03b&sxsrf=ADLYWIKwV2wk2Tp2sUqYupfSwrR9EHrE1g%3A1716014368710&source=hp&ei=IE1IZtyhKJzW1e8P38KAyAo&iflsig=AL9hbdgAAAAAZkhbMEu3zo6EPpUFz69xgmKgK7bVxh5T&ved=0ahUKEwjcsf7Wy5aGAxUca_UHHV8hAKkQ4dUDCBU&uact=5&oq=weather&gs_lp=Egdnd3Mtd2l6Igd3ZWF0aGVyMgQQIxgnMgoQIxiABBgnGIoFMhMQABiABBixAxhDGIMBGMkDGIoFMhAQABiABBixAxhDGIMBGIoFMgsQABiABBiSAxiKBTILEAAYgAQYkgMYigUyChAAGIAEGEMYigUyEBAAGIAEGLEDGEMYgwEYigUyEBAAGIAEGLEDGEMYgwEYigUyChAAGIAEGEMYigVIkw5QAFjjDHAAeACQAQCYAaQBoAG6BqoBAzIuNbgBA8gBAPgBAZgCB6AC5AbCAg0QABiABBixAxhDGIoFwgILEAAYgAQYsQMYgwHCAggQABiABBixA8ICEBAuGIAEGNEDGEMYxwEYigXCAhYQLhiABBixAxjRAxhDGIMBGMcBGIoFmAMAkgcDMC43oAfFQw&sclient=gws-wiz" class="slider-card">
<figure class="slider-banner img-holder" style="--width: 507; --height: 618;">
<img src="img/1.png" width="507" height="618" loading="lazy" alt="Sport"
class="img-cover">
</figure>
<div class="slider-content">
<span class="slider-title">Monday</span>
<p class="slider-subtitle">May 13 , 2024</p>
</div>
</a>
</li>
<li class="slider-item">
<a href="https://www.google.com/search?q=weather&sca_esv=4490efdd07ced03b&sxsrf=ADLYWIKwV2wk2Tp2sUqYupfSwrR9EHrE1g%3A1716014368710&source=hp&ei=IE1IZtyhKJzW1e8P38KAyAo&iflsig=AL9hbdgAAAAAZkhbMEu3zo6EPpUFz69xgmKgK7bVxh5T&ved=0ahUKEwjcsf7Wy5aGAxUca_UHHV8hAKkQ4dUDCBU&uact=5&oq=weather&gs_lp=Egdnd3Mtd2l6Igd3ZWF0aGVyMgQQIxgnMgoQIxiABBgnGIoFMhMQABiABBixAxhDGIMBGMkDGIoFMhAQABiABBixAxhDGIMBGIoFMgsQABiABBiSAxiKBTILEAAYgAQYkgMYigUyChAAGIAEGEMYigUyEBAAGIAEGLEDGEMYgwEYigUyEBAAGIAEGLEDGEMYgwEYigUyChAAGIAEGEMYigVIkw5QAFjjDHAAeACQAQCYAaQBoAG6BqoBAzIuNbgBA8gBAPgBAZgCB6AC5AbCAg0QABiABBixAxhDGIoFwgILEAAYgAQYsQMYgwHCAggQABiABBixA8ICEBAuGIAEGNEDGEMYxwEYigXCAhYQLhiABBixAxjRAxhDGIMBGMcBGIoFmAMAkgcDMC43oAfFQw&sclient=gws-wiz" class="slider-card">
<figure class="slider-banner img-holder" style="--width: 507; --height: 618;">
<img src="img/2.png" width="507" height="618" loading="lazy" alt="Travel"
class="img-cover">
</figure>
<div class="slider-content">
<span class="slider-title">Tuesday</span>
<p class="slider-subtitle">May 14 , 2024</p>
</div>
</a>
</li>
<li class="slider-item">
<a href="https://www.google.com/search?q=weather&sca_esv=4490efdd07ced03b&sxsrf=ADLYWIKwV2wk2Tp2sUqYupfSwrR9EHrE1g%3A1716014368710&source=hp&ei=IE1IZtyhKJzW1e8P38KAyAo&iflsig=AL9hbdgAAAAAZkhbMEu3zo6EPpUFz69xgmKgK7bVxh5T&ved=0ahUKEwjcsf7Wy5aGAxUca_UHHV8hAKkQ4dUDCBU&uact=5&oq=weather&gs_lp=Egdnd3Mtd2l6Igd3ZWF0aGVyMgQQIxgnMgoQIxiABBgnGIoFMhMQABiABBixAxhDGIMBGMkDGIoFMhAQABiABBixAxhDGIMBGIoFMgsQABiABBiSAxiKBTILEAAYgAQYkgMYigUyChAAGIAEGEMYigUyEBAAGIAEGLEDGEMYgwEYigUyEBAAGIAEGLEDGEMYgwEYigUyChAAGIAEGEMYigVIkw5QAFjjDHAAeACQAQCYAaQBoAG6BqoBAzIuNbgBA8gBAPgBAZgCB6AC5AbCAg0QABiABBixAxhDGIoFwgILEAAYgAQYsQMYgwHCAggQABiABBixA8ICEBAuGIAEGNEDGEMYxwEYigXCAhYQLhiABBixAxjRAxhDGIMBGMcBGIoFmAMAkgcDMC43oAfFQw&sclient=gws-wiz" class="slider-card">
<figure class="slider-banner img-holder" style="--width: 507; --height: 618;">
<img src="img/3.png" width="507" height="618" loading="lazy" alt="Design"
class="img-cover">
</figure>
<div class="slider-content">
<span class="slider-title">Wednesday</span>
<p class="slider-subtitle">May 15 , 2024</p>
</div>
</a>
</li>
<li class="slider-item">
<a href="https://www.google.com/search?q=weather&sca_esv=4490efdd07ced03b&sxsrf=ADLYWIKwV2wk2Tp2sUqYupfSwrR9EHrE1g%3A1716014368710&source=hp&ei=IE1IZtyhKJzW1e8P38KAyAo&iflsig=AL9hbdgAAAAAZkhbMEu3zo6EPpUFz69xgmKgK7bVxh5T&ved=0ahUKEwjcsf7Wy5aGAxUca_UHHV8hAKkQ4dUDCBU&uact=5&oq=weather&gs_lp=Egdnd3Mtd2l6Igd3ZWF0aGVyMgQQIxgnMgoQIxiABBgnGIoFMhMQABiABBixAxhDGIMBGMkDGIoFMhAQABiABBixAxhDGIMBGIoFMgsQABiABBiSAxiKBTILEAAYgAQYkgMYigUyChAAGIAEGEMYigUyEBAAGIAEGLEDGEMYgwEYigUyEBAAGIAEGLEDGEMYgwEYigUyChAAGIAEGEMYigVIkw5QAFjjDHAAeACQAQCYAaQBoAG6BqoBAzIuNbgBA8gBAPgBAZgCB6AC5AbCAg0QABiABBixAxhDGIoFwgILEAAYgAQYsQMYgwHCAggQABiABBixA8ICEBAuGIAEGNEDGEMYxwEYigXCAhYQLhiABBixAxjRAxhDGIMBGMcBGIoFmAMAkgcDMC43oAfFQw&sclient=gws-wiz" class="slider-card">
<figure class="slider-banner img-holder" style="--width: 507; --height: 618;">
<img src="img/4.png" width="507" height="618" loading="lazy" alt="Movie"
class="img-cover">
</figure>
<div class="slider-content">
<span class="slider-title">Thursday</span>
<p class="slider-subtitle">May 16 , 2024</p>
</div>
</a>
</li>
<li class="slider-item">
<a href="https://www.google.com/search?q=weather&sca_esv=4490efdd07ced03b&sxsrf=ADLYWIKwV2wk2Tp2sUqYupfSwrR9EHrE1g%3A1716014368710&source=hp&ei=IE1IZtyhKJzW1e8P38KAyAo&iflsig=AL9hbdgAAAAAZkhbMEu3zo6EPpUFz69xgmKgK7bVxh5T&ved=0ahUKEwjcsf7Wy5aGAxUca_UHHV8hAKkQ4dUDCBU&uact=5&oq=weather&gs_lp=Egdnd3Mtd2l6Igd3ZWF0aGVyMgQQIxgnMgoQIxiABBgnGIoFMhMQABiABBixAxhDGIMBGMkDGIoFMhAQABiABBixAxhDGIMBGIoFMgsQABiABBiSAxiKBTILEAAYgAQYkgMYigUyChAAGIAEGEMYigUyEBAAGIAEGLEDGEMYgwEYigUyEBAAGIAEGLEDGEMYgwEYigUyChAAGIAEGEMYigVIkw5QAFjjDHAAeACQAQCYAaQBoAG6BqoBAzIuNbgBA8gBAPgBAZgCB6AC5AbCAg0QABiABBixAxhDGIoFwgILEAAYgAQYsQMYgwHCAggQABiABBixA8ICEBAuGIAEGNEDGEMYxwEYigXCAhYQLhiABBixAxjRAxhDGIMBGMcBGIoFmAMAkgcDMC43oAfFQw&sclient=gws-wiz" class="slider-card">
<figure class="slider-banner img-holder" style="--width: 507; --height: 618;">
<img src="img/5.png" width="507" height="618" loading="lazy" alt="Lifestyle"
class="img-cover">
</figure>
<div class="slider-content">
<span class="slider-title">Friday</span>
<p class="slider-subtitle">May 17 , 2024</p>
</div>
</a>
</li>
<li class="slider-item">
<a href="https://www.google.com/search?q=weather&sca_esv=4490efdd07ced03b&sxsrf=ADLYWIKwV2wk2Tp2sUqYupfSwrR9EHrE1g%3A1716014368710&source=hp&ei=IE1IZtyhKJzW1e8P38KAyAo&iflsig=AL9hbdgAAAAAZkhbMEu3zo6EPpUFz69xgmKgK7bVxh5T&ved=0ahUKEwjcsf7Wy5aGAxUca_UHHV8hAKkQ4dUDCBU&uact=5&oq=weather&gs_lp=Egdnd3Mtd2l6Igd3ZWF0aGVyMgQQIxgnMgoQIxiABBgnGIoFMhMQABiABBixAxhDGIMBGMkDGIoFMhAQABiABBixAxhDGIMBGIoFMgsQABiABBiSAxiKBTILEAAYgAQYkgMYigUyChAAGIAEGEMYigUyEBAAGIAEGLEDGEMYgwEYigUyEBAAGIAEGLEDGEMYgwEYigUyChAAGIAEGEMYigVIkw5QAFjjDHAAeACQAQCYAaQBoAG6BqoBAzIuNbgBA8gBAPgBAZgCB6AC5AbCAg0QABiABBixAxhDGIoFwgILEAAYgAQYsQMYgwHCAggQABiABBixA8ICEBAuGIAEGNEDGEMYxwEYigXCAhYQLhiABBixAxjRAxhDGIMBGMcBGIoFmAMAkgcDMC43oAfFQw&sclient=gws-wiz" class="slider-card">
<figure class="slider-banner img-holder" style="--width: 507; --height: 618;">
<img src="img/6.png" width="507" height="618" loading="lazy" alt="Travel"
class="img-cover">
</figure>
<div class="slider-content">
<span class="slider-title">Saturday</span>
<p class="slider-subtitle">May 18 , 2024</p>
</div>
</a>
</li>
<li class="slider-item">
<a href="https://www.google.com/search?q=weather&sca_esv=4490efdd07ced03b&sxsrf=ADLYWIKwV2wk2Tp2sUqYupfSwrR9EHrE1g%3A1716014368710&source=hp&ei=IE1IZtyhKJzW1e8P38KAyAo&iflsig=AL9hbdgAAAAAZkhbMEu3zo6EPpUFz69xgmKgK7bVxh5T&ved=0ahUKEwjcsf7Wy5aGAxUca_UHHV8hAKkQ4dUDCBU&uact=5&oq=weather&gs_lp=Egdnd3Mtd2l6Igd3ZWF0aGVyMgQQIxgnMgoQIxiABBgnGIoFMhMQABiABBixAxhDGIMBGMkDGIoFMhAQABiABBixAxhDGIMBGIoFMgsQABiABBiSAxiKBTILEAAYgAQYkgMYigUyChAAGIAEGEMYigUyEBAAGIAEGLEDGEMYgwEYigUyEBAAGIAEGLEDGEMYgwEYigUyChAAGIAEGEMYigVIkw5QAFjjDHAAeACQAQCYAaQBoAG6BqoBAzIuNbgBA8gBAPgBAZgCB6AC5AbCAg0QABiABBixAxhDGIoFwgILEAAYgAQYsQMYgwHCAggQABiABBixA8ICEBAuGIAEGNEDGEMYxwEYigXCAhYQLhiABBixAxjRAxhDGIMBGMcBGIoFmAMAkgcDMC43oAfFQw&sclient=gws-wiz" class="slider-card">
<figure class="slider-banner img-holder" style="--width: 507; --height: 618;">
<img src="img/7.png" width="507" height="618" loading="lazy" alt="Travel"
class="img-cover">
</figure>
<div class="slider-content">
<span class="slider-title">Sunday</span>
<p class="slider-subtitle">May 19 , 2024</p>
</div>
</a>
</li>
</ul>
</div>
</div>
</div>
</section>
<!--
- #FEATURED POST
-->
<section class="section feature" aria-label="feature" id="featured">
<div class="container">
<h2 class="headline headline-2 section-title">
<span class="span">Climate's Post</span>
</h2>
<p class="section-text">
Stay informed with our top-rated climate change articles. Discover the latest research, innovative solutions, and expert opinions on global warming's effects. Learn about rising sea levels, extreme weather, and actions you can take. Read in-depth analyses, interviews with scientists, and success stories in sustainability. Keep up with crucial updates and join the conversation on this urgent issue.
</p>
<ul class="feature-list">
<li>
<div class="card feature-card">
<figure class="card-banner img-holder" style="--width: 1602; --height: 903;">
<img src="img/Blazing Flames Create Stunning Landscapes.jpg" width="1602" height="903" loading="lazy"
alt="Self-observation is the first step of inner unfolding" class="img-cover">
</figure>
<div class="card-content">
<div class="card-wrapper">
<div class="card-tag">
<a href="#" class="span hover-2">#ForestFire</a>
<a href="#" class="span hover-2">#SavePlanetEarth</a>
</div>
<div class="wrapper">
<ion-icon name="time-outline" aria-hidden="true"></ion-icon>
<span class="span">3 mins read</span>
</div>
</div>
<h3 class="headline headline-3">
<a href="https://www.noaa.gov/noaa-wildfire/wildfire-climate-connection#:~:text=Research%20shows%20that%20changes%20in,fuels%20during%20the%20fire%20season." class="card-title hover-2">
"Forest Fire Engulfs Thousands of Acres, Threatening Wildlife and Communities"
</a>
</h3>
<div class="card-wrapper">
<div class="profile-card">
<img src="img/413176132_1490694741788327_6171468843337700105_n.jpg" width="48" height="48" loading="lazy" alt="Joseph"
class="profile-banner">
<div>
<p class="card-title">Carlos Yajie</p>
<p class="card-subtitle">1 May 2024</p>
</div>
</div>
<a href="https://www.noaa.gov/noaa-wildfire/wildfire-climate-connection#:~:text=Research%20shows%20that%20changes%20in,fuels%20during%20the%20fire%20season." class="card-btn">Read more</a>
</div>
</div>
</div>
</li>
<li>
<div class="card feature-card">
<figure class="card-banner img-holder" style="--width: 1602; --height: 903;">
<img src="img/MELTING ICE CAPS_ Coastal cities under threat as Antarctica thaws.jpg" width="1602" height="903" loading="lazy"
alt="Self-observation is the first step of inner unfolding" class="img-cover">
</figure>
<div class="card-content">
<div class="card-wrapper">
<div class="card-tag">
<a href="#" class="span hover-2">#Design</a>
<a href="#" class="span hover-2">#Movie</a>
</div>
<div class="wrapper">
<ion-icon name="time-outline" aria-hidden="true"></ion-icon>
<span class="span">6 mins read</span>
</div>
</div>
<h3 class="headline headline-3">
<a href="https://scied.ucar.edu/learning-zone/climate-change-impacts/climate-and-ice#:~:text=Melting%20ice%20causes%20more%20warming.&text=As%20global%20warming%20causes%20more,the%20heat%20to%20the%20atmosphere." class="card-title hover-2">
"Melting Ice Caps Accelerate, Raising Sea Levels and Climate Concerns"
</a>
</h3>
<div class="card-wrapper">
<div class="profile-card">
<img src="img/received_819953090007223.jpeg" width="48" height="48" loading="lazy" alt="Joseph"
class="profile-banner">
<div>
<p class="card-title">Ryle Calingasan</p>
<p class="card-subtitle">18 May 2024</p>
</div>
</div>
<a href="https://scied.ucar.edu/learning-zone/climate-change-impacts/climate-and-ice#:~:text=Melting%20ice%20causes%20more%20warming.&text=As%20global%20warming%20causes%20more,the%20heat%20to%20the%20atmosphere." class="card-btn">Read more</a>
</div>
</div>
</div>
</li>
<li>
<div class="card feature-card">
<figure class="card-banner img-holder" style="--width: 1602; --height: 903;">
<img src="img/Free Photo _ Girls sitting hugging their knees, looking at the sky and having trees on dry ground.jpg" width="1602" height="903" loading="lazy"
alt="Self-observation is the first step of inner unfolding" class="img-cover">
</figure>
<div class="card-content">
<div class="card-wrapper">
<div class="card-tag">
<a href="#" class="span hover-2">#Design</a>
<a href="#" class="span hover-2">#Movie</a>
</div>
<div class="wrapper">
<ion-icon name="time-outline" aria-hidden="true"></ion-icon>
<span class="span">6 mins read</span>
</div>
</div>
<h3 class="headline headline-3">
<a href="https://www.noaa.gov/noaa-wildfire/wildfire-climate-connection#:~:text=Research%20shows%20that%20changes%20in,fuels%20during%20the%20fire%20season." class="card-title hover-2">
"Drought Ravages Farmlands, Threatening Food Security and Livelihoods"
</a>
</h3>
<div class="card-wrapper">
<div class="profile-card">
<img src="img/escober.png" width="48" height="48" loading="lazy" alt="Joseph"
class="profile-banner">
<div>
<p class="card-title">Reyahn Escober</p>
<p class="card-subtitle">18 May 2024</p>
</div>
</div>
<a href="https://www.noaa.gov/noaa-wildfire/wildfire-climate-connection#:~:text=Research%20shows%20that%20changes%20in,fuels%20during%20the%20fire%20season." class="card-btn">Read more</a>
</div>
</div>
</div>
</li>
<li>
<div class="card feature-card">
<figure class="card-banner img-holder" style="--width: 1602; --height: 903;">
<img src="img/Smoke Stacks Smog Pollution.jpg" width="1602" height="903" loading="lazy"
alt="Self-observation is the first step of inner unfolding" class="img-cover">
</figure>
<div class="card-content">
<div class="card-wrapper">
<div class="card-tag">
<a href="#" class="span hover-2">#Design</a>
<a href="#" class="span hover-2">#Movie</a>
</div>
<div class="wrapper">
<ion-icon name="time-outline" aria-hidden="true"></ion-icon>
<span class="span">6 mins read</span>
</div>
</div>
<h3 class="headline headline-3">
<a href="https://scied.ucar.edu/image/factory-smoke" class="card-title hover-2">
"Pollution Crisis Grips Cities, Prompting Calls for Immediate Action"
</a>
</h3>
<div class="card-wrapper">
<div class="profile-card">
<img src="img/received_1566086830894722 (1).jpeg" width="48" height="48" loading="lazy" alt="Joseph"
class="profile-banner">
<div>
<p class="card-title">Adrian Camota</p>
<p class="card-subtitle">18 May 2024</p>
</div>
</div>
<a href="https://scied.ucar.edu/image/factory-smoke" class="card-btn">Read more</a>
</div>
</div>
</div>
</li>
<li>
<div class="card feature-card">
<figure class="card-banner img-holder" style="--width: 1602; --height: 903;">
<img src="img/Updates_ More of I-12 now open in both directions; I-10 westbound closes at La_ 73 in Ascension Parish; major roads in Central completely flooded.jpg" width="1602" height="903" loading="lazy"
alt="Self-observation is the first step of inner unfolding" class="img-cover">
</figure>
<div class="card-content">
<div class="card-wrapper">
<div class="card-tag">
<a href="#" class="span hover-2">#Design</a>
<a href="#" class="span hover-2">#Movie</a>
</div>
<div class="wrapper">
<ion-icon name="time-outline" aria-hidden="true"></ion-icon>
<span class="span">6 mins read</span>
</div>
</div>
<h3 class="headline headline-3">
<a href="https://www.nytimes.com/article/flooding-climate-change.html#:~:text=Warmer%20temperatures%20increase%20evaporation%2C%20putting,while%20the%20magnitude%20gets%20higher." class="card-title hover-2">
"Floodwaters Devastate Regions, Prompting Urgent Evacuations and Relief Efforts"
</a>
</h3>
<div class="card-wrapper">
<div class="profile-card">
<img src="img/pic.jpg" width="48" height="48" loading="lazy" alt="Joseph"
class="profile-banner">
<div>
<p class="card-title">Eiman Bisa</p>
<p class="card-subtitle">25 Nov 2022</p>
</div>
</div>
<a href="https://www.nytimes.com/article/flooding-climate-change.html#:~:text=Warmer%20temperatures%20increase%20evaporation%2C%20putting,while%20the%20magnitude%20gets%20higher." class="card-btn">Read more</a>
</div>
</div>
</div>
</li>
</ul>
<a href="#" class="btn btn-secondary">
<span class="span">Show More Posts</span>
<ion-icon name="arrow-forward" aria-hidden="true"></ion-icon>
</a>
</div>
</section>
<!--
- #POPULAR TAGS
-->
<section class="tags" id="camp_tags" aria-labelledby="tag-label">
<div class="container">
<h2 class="headline headline-2 section-title" id="tag-label">
<span class="span">Tips To Prevent Climate Change</span>
</h2>
<p class="section-text">
Preventing climate change requires simple, everyday actions. Save energy by turning off lights and using energy-efficient appliances. Choose sustainable transportation like biking, carpooling, or public transit. Reduce waste through recycling, reusing, and composting, and cut down on plastic by using reusable items. Eat more plant-based, locally-produced foods to lower emissions. Support policies for renewable energy and spread awareness about climate action. These small steps can collectively make a big difference for our planet.
</p>
<ul class="grid-list">
<li>
<button class="card tag-btn">
<img src="img/Going Zero Waste_ 30 Easy Swaps To Going (Almost) Waste Free.jpg" width="32" height="32" loading="lazy" alt="Travel">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Reduce</a>
</button>
</li>
<li>
<button class="card tag-btn">
<img src="img/Ícone de reciclagem, símbolo de reutilização, redução de lixo e aumento de reciclagem redesenhado com cores verdes úteis para infográficos e rótulos isolados no fundo branco vector _ Vetor Premium.jpg" width="32" height="32" loading="lazy" alt="Culture">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Recycle</a>
</button>
</li>
<li>
<button class="card tag-btn">
<img src="img/Free Vector _ Reduce reuse and recycle icon.jpg" width="32" height="32" loading="lazy" alt="Lifestyle">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Reuse</a>
</button>
</li>
<li>
<button class="card tag-btn">
<img src="img/Desain Logo Daun, Clipart Daun, Daun, Vektor PNG dan Vektor dengan Background Transparan untuk Unduh Gratis.jpg" width="32" height="32" loading="lazy" alt="Fashion">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Conserve</a>
</button>
</li>
<li>
<button class="card tag-btn" >
<img src="img/Modern Green Mangrove Plant Tree for Garden Park Conservation Logo Design Vector.jpg" width="32" height="32" loading="lazy" alt="Food">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Plant</a>
</button>
</li>
<li>
<button class="card tag-btn">
<img src="img/Notary Clipart Hd PNG, Notary Law Logo, Comparison, Measure, Graphic PNG Image For Free Download.jpg" width="32" height="32" loading="lazy" alt="Space">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Advocate</a>
</button>
</li>
<li>
<button class="card tag-btn">
<img src="img/Premium Vector _ Graduation cap symbol of education illustration design_.jpg" width="32" height="32" loading="lazy" alt="Animal">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Educate</a>
</button>
</li>
<li>
<button class="card tag-btn">
<img src="img/Pujiarts.jpg" width="32" height="32" loading="lazy" alt="Minimal">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Innovate</a>
</button>
</li>
<li>
<button class="card tag-btn">
<img src="img/Premium Vector _ House electric logo, electrical logo.jpg" width="32" height="32" loading="lazy" alt="Interior">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Electrify</a>
</button>
</li>
<li>
<button class="card tag-btn">
<img src="img/Dnevnik Logo _ SVG _ Real Company _ Alphabet, Letter D Logo.jpg" width="32" height="32" loading="lazy" alt="Plant">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Adapt</a>
</button>
</li>
<li>
<button class="card tag-btn">
<img src="img/Plant Logo.jpg" width="32" height="32" loading="lazy" alt="Nature">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Save</a>
</button>
</li>
<li>
<button class="card tag-btn">
<img src="img/WeVote.jpg" width="32" height="32" loading="lazy" alt="Business">
<a href="https://onetreeplanted.org/blogs/stories/ways-to-stop-climate-change" class="btn-text">Vote</a>
</button>
</li>
</ul>
</div>
</section>
<!--
- #FEATURED POST
-->
<section class="section recent-post" id="recent" aria-labelledby="recent-label">
<div class="container">
<div class="post-main">
<h2 class="headline headline-2 section-title">
<span class="span">Featured Post</span>
</h2>
<p class="section-text">
Join us in combating global warming and promoting sustainability. Your donation helps fund vital projects like reforestation, clean energy, and conservation. Together, we can create a healthier planet for future generations. Donate today and be part of the change!
</p>
<ul class="grid-list">
<li>
<div class="recent-post-card">
<figure class="card-banner img-holder" style="--width: 271; --height: 258;">
<img src="img/ilyess_1440812.jpg" width="271" height="258" loading="lazy"
alt="Helpful Tips for Working from Home as a Freelancer" class="img-cover">
</figure>
<div class="card-content">
<a href="https://www.rescue.org/uk/article/12-climate-activists-inspiring-us-fight-climate-change?fbclid=IwAR2A3XkyVutXWMGIFORF_qdmMsggR6vUQ2u1rH1gRMHM09q7oJvgZ8wYU8c" class="card-badge">Donations</a>
<h3 class="headline headline-3 card-title">
<a href="https://www.rescue.org/uk/article/12-climate-activists-inspiring-us-fight-climate-change?fbclid=IwAR2A3XkyVutXWMGIFORF_qdmMsggR6vUQ2u1rH1gRMHM09q7oJvgZ8wYU8c" class="link hover-2 hf">Ilyess El Korbi</a>
</h3>
<p class="card-text">
Born in Ukraine, Ilyess grew up in Morrocco, moving back to Ukraine when they were 14-years-old. When Ilyess wanted to take part in climate movement protests in 2019, they discovered that none had yet been registered in Ukraine. Together with friends, they changed this and Ilyess is now the board secretary of Fridays For Future Ukraine.
When the war broke out in Ukraine, Ilyess was in Kyiv and fortunately was able to flee to Berlin a short time after. Together with other climate activists in Germany, they are now raising awareness about the situation in Ukraine and the climate crisis.
</p>
<div class="card-wrapper">
<div class="card-tag">
<a href="#" class="span hover-2"># SaveEarth</a>
<a href="#" class="span hover-2"># OneNationOneGoal</a>
</div>
<div class="wrapper">
<ion-icon name="time-outline" aria-hidden="true"></ion-icon>
<span class="span">3 mins read</span>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="recent-post-card">
<figure class="card-banner img-holder" style="--width: 271; --height: 258;">
<img src="img/img_20210503_221624.jpg" width="271" height="258" loading="lazy"
alt="Helpful Tips for Working from Home as a Freelancer" class="img-cover">
</figure>
<div class="card-content">
<a href="https://www.rescue.org/uk/article/12-climate-activists-inspiring-us-fight-climate-change?fbclid=IwAR2A3XkyVutXWMGIFORF_qdmMsggR6vUQ2u1rH1gRMHM09q7oJvgZ8wYU8c" class="card-badge">Donations</a>
<h3 class="headline headline-3 card-title">
<a href="https://www.rescue.org/uk/article/12-climate-activists-inspiring-us-fight-climate-change?fbclid=IwAR2A3XkyVutXWMGIFORF_qdmMsggR6vUQ2u1rH1gRMHM09q7oJvgZ8wYU8c" class="link hover-2">Elizabeth Wanjiru Wathuti</a>
</h3>
<p class="card-text">
Award-winning Kenyan environment activist Elizabeth Wanjiru Wathuti founded the Green Generation Initiative which has planted over 30,000 tree seedlings in Kenya and encourages young people to discover and care for nature. "When I was younger, I had an opportunity to spend time in nature, in the central highlands of Kenya, but along the way, I witnessed deforestation firsthand. The wild forests I liked to play in were cut down. The streams I used to drink from are now polluted or drying up.
</p>
<div class="card-wrapper">
<div class="card-tag">
<ahref="#" class="span hover-2"># SaveEarth</a>
<a href="#" class="span hover-2"># OneNationOneGoal</a>
</div>
<div class="wrapper">
<ion-icon name="time-outline" aria-hidden="true"></ion-icon>
<span class="span">3 mins read</span>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="recent-post-card">
<figure class="card-banner img-holder" style="--width: 271; --height: 258;">
<img src="img/image.png" width="271" height="258" loading="lazy"
alt="Helpful Tips for Working from Home as a Freelancer" class="img-cover">
</figure>
<div class="card-content">
<a href="https://www.rescue.org/uk/article/12-climate-activists-inspiring-us-fight-climate-change?fbclid=IwAR2A3XkyVutXWMGIFORF_qdmMsggR6vUQ2u1rH1gRMHM09q7oJvgZ8wYU8c" class="card-badge">Donations</a>
<h3 class="headline headline-3 card-title">
<a href="https://www.rescue.org/uk/article/12-climate-activists-inspiring-us-fight-climate-change?fbclid=IwAR2A3XkyVutXWMGIFORF_qdmMsggR6vUQ2u1rH1gRMHM09q7oJvgZ8wYU8c" class="link hover-2">Greta Thunberg</a>
</h3>
<p class="card-text">
A global figure and a key name in the climate conversation, we couldn’t compile a list of climate warriors without including Swedish activist Greta Thunberg. What originally began as a solo protest outside of her school, has now snowballed into Fridays for Future, an international school strike on involving millions around the world. Not only that but in 2019 she sailed across the atlantic to attend the UN climate conference. Later that year, she was crowned Time’s Magazine person of the year.
</p>
<div class="card-wrapper">
<div class="card-tag">
<a href="#" class="span hover-2"># SaveEarth</a>
<a href="#" class="span hover-2"># OneNationOneGoal</a>
</div>
<div class="wrapper">
<ion-icon name="time-outline" aria-hidden="true"></ion-icon>
<span class="span">3 mins read</span>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="recent-post-card">
<figure class="card-banner img-holder" style="--width: 271; --height: 258;">
<img src="img/thumbnail_47121558-7f30-468f-8bbc-24c59afb1b98.jpeg" width="271" height="258" loading="lazy"
alt="Helpful Tips for Working from Home as a Freelancer" class="img-cover">
</figure>
<div class="card-content">
<a href="https://www.rescue.org/uk/article/12-climate-activists-inspiring-us-fight-climate-change?fbclid=IwAR2A3XkyVutXWMGIFORF_qdmMsggR6vUQ2u1rH1gRMHM09q7oJvgZ8wYU8c" class="card-badge">Donations</a>
<h3 class="headline headline-3 card-title">
<a href="https://www.rescue.org/uk/article/12-climate-activists-inspiring-us-fight-climate-change?fbclid=IwAR2A3XkyVutXWMGIFORF_qdmMsggR6vUQ2u1rH1gRMHM09q7oJvgZ8wYU8c" class="link hover-2">Tori Tsui</a>
</h3>
<p class="card-text">
Bristol-based Tori Tsui is a climate activist, speaker and writer from Hong Kong and New Zealand. Featured as Stella McCartney’s agent of change in 2019, she is working on her debut book due for release in 2022.
Tori told us: “Climate justice for me is about survival and a very rudimentary and basic love for the planet and its inhabitants. Climate justice is a chance for us to rewrite and transform our relationships with one another and campaign for reparative actions that benefit society’s most marginalised. It is essential in tackling the climate crisis.”
</p>
<div class="card-wrapper">
<div class="card-tag">
<a href="#" class="span hover-2"># SaveEarth</a>
<a href="#" class="span hover-2"># OneNationOneGoal</a>
</div>
<div class="wrapper">
<ion-icon name="time-outline" aria-hidden="true"></ion-icon>
<span class="span">3 mins read</span>
</div>
</div>
</div>
</div>
</li>
<li>
<div class="recent-post-card">
<figure class="card-banner img-holder" style="--width: 271; --height: 258;">
<img src="img/Screenshot 2024-05-17 211933.png" width="271" height="258" loading="lazy"
alt="Helpful Tips for Working from Home as a Freelancer" class="img-cover">
</figure>
<div class="card-content">
<a href="https://www.rescue.org/uk/article/12-climate-activists-inspiring-us-fight-climate-change?fbclid=IwAR2A3XkyVutXWMGIFORF_qdmMsggR6vUQ2u1rH1gRMHM09q7oJvgZ8wYU8c" class="card-badge">Donations</a>
<h3 class="headline headline-3 card-title">
<a href="https://www.rescue.org/uk/article/12-climate-activists-inspiring-us-fight-climate-change?fbclid=IwAR2A3XkyVutXWMGIFORF_qdmMsggR6vUQ2u1rH1gRMHM09q7oJvgZ8wYU8c" class="link hover-2">John Paul Jose</a>
</h3>
<p class="card-text">
John Paul Jose is an environmental and climate activist from Kerala, India. His accolades range from collaboration with NGOs and the UN and delivering Tedx Talks - all before his 24th birthday. With first-hand experience of the impact of climate change, John Paul is committed to highlighting how global warming is affecting India’s forests and ecosystems.
</p>
<div class="card-wrapper">