-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemp.html
1167 lines (1158 loc) · 66.3 KB
/
temp.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>
<head>
<title>Africa Temperature Rise</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<div id="header"></div>
<div class="temp-intro">
<div class="temp-intro-graph">
<img src="average_temperature_change_per_year_barplot.png" alt="World Temperature Trend Graph">
</div>
<div class="temp-intro-text">
<h3 class="temp-intro-title">Visualizing the Global Average Surface Temperature Change from 1961 to 2021</h3>
<p class="temp-intro-description">This bar plot provides a visual representation of the average surface temperature change for 224 countries from 1961 to 2021. The purpose of this visualization is to illustrate how global temperatures have fluctuated over the past six decades.</p>
<p class="temp-intro-description">By observing the trends in this graph, it becomes evident that the average surface temperature has been generally increasing over the years. This increase in temperature highlights the impact of global warming, which can be attributed to factors such as human-induced greenhouse gas emissions and deforestation.</p>
<p class="temp-intro-description">One of the critical consequences of rising temperatures is the decline in groundwater levels, particularly in Africa. As surface temperatures increase, evaporation rates intensify, leading to reduced groundwater recharge and increased water scarcity. This has a domino effect on the availability of water resources, affecting agriculture, ecosystems, and human populations, particularly in regions where water scarcity is already a pressing issue.</p>
<p class="temp-intro-description">The rising global temperatures have far-reaching consequences on the environment, ecosystems, and human societies. Some of these consequences include more frequent and severe weather events, melting polar ice caps, rising sea levels, and the loss of biodiversity. This visualization serves as a stark reminder of the urgent need for collective action to mitigate the effects of climate change and protect our planet for future generations.</p>
</div>
</div>
<div class="section-2">
<h2 class="section-2-title">Curious about how serious your country's warming is? Find it here.</h2>
<p class="section-2-text">The changes in surface temperature growth over recent decades for a total of 224 countries are recorded here. Keep in mind that the entire planet is experiencing this warming and it is already having a very significant negative impact. Some countries are even experiencing twice the average warming and are suffering serious consequences as a result.</p>
</div>
<div class="separator-1"></div>
<head>
<style>
.graph-container { display: flex; flex-wrap: wrap; }
.graph { flex: 1 0 50%; padding: 5px; box-sizing: border-box; }
.graph-row { display: flex; flex-wrap: wrap; }
.graph-image { width: 100%; height: auto; }
</style>
</head>
<body>
<div class="graph-container">
<div class="graph-row">
<div class="graph">
<h3>Afghanistan, Islamic Rep. of</h3>
<img src="country_graphs/Afghanistan_Islamic_Rep_of_temperature_change.png" alt="Temperature change for Afghanistan, Islamic Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Albania</h3>
<img src="country_graphs/Albania_temperature_change.png" alt="Temperature change for Albania" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Algeria</h3>
<img src="country_graphs/Algeria_temperature_change.png" alt="Temperature change for Algeria" class="graph-image">
</div>
<div class="graph">
<h3>American Samoa</h3>
<img src="country_graphs/American_Samoa_temperature_change.png" alt="Temperature change for American Samoa" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Andorra, Principality of</h3>
<img src="country_graphs/Andorra_Principality_of_temperature_change.png" alt="Temperature change for Andorra, Principality of" class="graph-image">
</div>
<div class="graph">
<h3>Angola</h3>
<img src="country_graphs/Angola_temperature_change.png" alt="Temperature change for Angola" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Anguilla</h3>
<img src="country_graphs/Anguilla_temperature_change.png" alt="Temperature change for Anguilla" class="graph-image">
</div>
<div class="graph">
<h3>Antigua and Barbuda</h3>
<img src="country_graphs/Antigua_and_Barbuda_temperature_change.png" alt="Temperature change for Antigua and Barbuda" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Argentina</h3>
<img src="country_graphs/Argentina_temperature_change.png" alt="Temperature change for Argentina" class="graph-image">
</div>
<div class="graph">
<h3>Armenia, Rep. of</h3>
<img src="country_graphs/Armenia_Rep_of_temperature_change.png" alt="Temperature change for Armenia, Rep. of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Aruba, Kingdom of the Netherlands</h3>
<img src="country_graphs/Aruba_Kingdom_of_the_Netherlands_temperature_change.png" alt="Temperature change for Aruba, Kingdom of the Netherlands" class="graph-image">
</div>
<div class="graph">
<h3>Australia</h3>
<img src="country_graphs/Australia_temperature_change.png" alt="Temperature change for Australia" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Austria</h3>
<img src="country_graphs/Austria_temperature_change.png" alt="Temperature change for Austria" class="graph-image">
</div>
<div class="graph">
<h3>Azerbaijan, Rep. of</h3>
<img src="country_graphs/Azerbaijan_Rep_of_temperature_change.png" alt="Temperature change for Azerbaijan, Rep. of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Bahamas, The</h3>
<img src="country_graphs/Bahamas_The_temperature_change.png" alt="Temperature change for Bahamas, The" class="graph-image">
</div>
<div class="graph">
<h3>Bahrain, Kingdom of</h3>
<img src="country_graphs/Bahrain_Kingdom_of_temperature_change.png" alt="Temperature change for Bahrain, Kingdom of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Bangladesh</h3>
<img src="country_graphs/Bangladesh_temperature_change.png" alt="Temperature change for Bangladesh" class="graph-image">
</div>
<div class="graph">
<h3>Barbados</h3>
<img src="country_graphs/Barbados_temperature_change.png" alt="Temperature change for Barbados" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Belarus, Rep. of</h3>
<img src="country_graphs/Belarus_Rep_of_temperature_change.png" alt="Temperature change for Belarus, Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Belgium</h3>
<img src="country_graphs/Belgium_temperature_change.png" alt="Temperature change for Belgium" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Belize</h3>
<img src="country_graphs/Belize_temperature_change.png" alt="Temperature change for Belize" class="graph-image">
</div>
<div class="graph">
<h3>Benin</h3>
<img src="country_graphs/Benin_temperature_change.png" alt="Temperature change for Benin" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Bhutan</h3>
<img src="country_graphs/Bhutan_temperature_change.png" alt="Temperature change for Bhutan" class="graph-image">
</div>
<div class="graph">
<h3>Bolivia</h3>
<img src="country_graphs/Bolivia_temperature_change.png" alt="Temperature change for Bolivia" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Bosnia and Herzegovina</h3>
<img src="country_graphs/Bosnia_and_Herzegovina_temperature_change.png" alt="Temperature change for Bosnia and Herzegovina" class="graph-image">
</div>
<div class="graph">
<h3>Botswana</h3>
<img src="country_graphs/Botswana_temperature_change.png" alt="Temperature change for Botswana" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Brazil</h3>
<img src="country_graphs/Brazil_temperature_change.png" alt="Temperature change for Brazil" class="graph-image">
</div>
<div class="graph">
<h3>British Virgin Islands</h3>
<img src="country_graphs/British_Virgin_Islands_temperature_change.png" alt="Temperature change for British Virgin Islands" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Brunei Darussalam</h3>
<img src="country_graphs/Brunei_Darussalam_temperature_change.png" alt="Temperature change for Brunei Darussalam" class="graph-image">
</div>
<div class="graph">
<h3>Bulgaria</h3>
<img src="country_graphs/Bulgaria_temperature_change.png" alt="Temperature change for Bulgaria" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Burkina Faso</h3>
<img src="country_graphs/Burkina_Faso_temperature_change.png" alt="Temperature change for Burkina Faso" class="graph-image">
</div>
<div class="graph">
<h3>Burundi</h3>
<img src="country_graphs/Burundi_temperature_change.png" alt="Temperature change for Burundi" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Cabo Verde</h3>
<img src="country_graphs/Cabo_Verde_temperature_change.png" alt="Temperature change for Cabo Verde" class="graph-image">
</div>
<div class="graph">
<h3>Cambodia</h3>
<img src="country_graphs/Cambodia_temperature_change.png" alt="Temperature change for Cambodia" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Cameroon</h3>
<img src="country_graphs/Cameroon_temperature_change.png" alt="Temperature change for Cameroon" class="graph-image">
</div>
<div class="graph">
<h3>Canada</h3>
<img src="country_graphs/Canada_temperature_change.png" alt="Temperature change for Canada" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Cayman Islands</h3>
<img src="country_graphs/Cayman_Islands_temperature_change.png" alt="Temperature change for Cayman Islands" class="graph-image">
</div>
<div class="graph">
<h3>Central African Rep.</h3>
<img src="country_graphs/Central_African_Rep_temperature_change.png" alt="Temperature change for Central African Rep." class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Chad</h3>
<img src="country_graphs/Chad_temperature_change.png" alt="Temperature change for Chad" class="graph-image">
</div>
<div class="graph">
<h3>Chile</h3>
<img src="country_graphs/Chile_temperature_change.png" alt="Temperature change for Chile" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Comoros, Union of the</h3>
<img src="country_graphs/Comoros_Union_of_the_temperature_change.png" alt="Temperature change for Comoros, Union of the" class="graph-image">
</div>
<div class="graph">
<h3>Congo, Dem. Rep. of the</h3>
<img src="country_graphs/Congo_Dem_Rep_of_the_temperature_change.png" alt="Temperature change for Congo, Dem. Rep. of the" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Congo, Rep. of</h3>
<img src="country_graphs/Congo_Rep_of_temperature_change.png" alt="Temperature change for Congo, Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Cook Islands</h3>
<img src="country_graphs/Cook_Islands_temperature_change.png" alt="Temperature change for Cook Islands" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Costa Rica</h3>
<img src="country_graphs/Costa_Rica_temperature_change.png" alt="Temperature change for Costa Rica" class="graph-image">
</div>
<div class="graph">
<h3>Croatia, Rep. of</h3>
<img src="country_graphs/Croatia_Rep_of_temperature_change.png" alt="Temperature change for Croatia, Rep. of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Cuba</h3>
<img src="country_graphs/Cuba_temperature_change.png" alt="Temperature change for Cuba" class="graph-image">
</div>
<div class="graph">
<h3>Cyprus</h3>
<img src="country_graphs/Cyprus_temperature_change.png" alt="Temperature change for Cyprus" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Czech Rep.</h3>
<img src="country_graphs/Czech_Rep_temperature_change.png" alt="Temperature change for Czech Rep." class="graph-image">
</div>
<div class="graph">
<h3>Denmark</h3>
<img src="country_graphs/Denmark_temperature_change.png" alt="Temperature change for Denmark" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Djibouti</h3>
<img src="country_graphs/Djibouti_temperature_change.png" alt="Temperature change for Djibouti" class="graph-image">
</div>
<div class="graph">
<h3>Dominica</h3>
<img src="country_graphs/Dominica_temperature_change.png" alt="Temperature change for Dominica" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Dominican Rep.</h3>
<img src="country_graphs/Dominican_Rep_temperature_change.png" alt="Temperature change for Dominican Rep." class="graph-image">
</div>
<div class="graph">
<h3>Ecuador</h3>
<img src="country_graphs/Ecuador_temperature_change.png" alt="Temperature change for Ecuador" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Egypt, Arab Rep. of</h3>
<img src="country_graphs/Egypt_Arab_Rep_of_temperature_change.png" alt="Temperature change for Egypt, Arab Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>El Salvador</h3>
<img src="country_graphs/El_Salvador_temperature_change.png" alt="Temperature change for El Salvador" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Equatorial Guinea, Rep. of</h3>
<img src="country_graphs/Equatorial_Guinea_Rep_of_temperature_change.png" alt="Temperature change for Equatorial Guinea, Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Eritrea, The State of</h3>
<img src="country_graphs/Eritrea_The_State_of_temperature_change.png" alt="Temperature change for Eritrea, The State of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Estonia, Rep. of</h3>
<img src="country_graphs/Estonia_Rep_of_temperature_change.png" alt="Temperature change for Estonia, Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Eswatini, Kingdom of</h3>
<img src="country_graphs/Eswatini_Kingdom_of_temperature_change.png" alt="Temperature change for Eswatini, Kingdom of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Ethiopia, The Federal Dem. Rep. of</h3>
<img src="country_graphs/Ethiopia_The_Federal_Dem_Rep_of_temperature_change.png" alt="Temperature change for Ethiopia, The Federal Dem. Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Falkland Islands (Malvinas)</h3>
<img src="country_graphs/Falkland_Islands_(Malvinas)_temperature_change.png" alt="Temperature change for Falkland Islands (Malvinas)" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Faroe Islands</h3>
<img src="country_graphs/Faroe_Islands_temperature_change.png" alt="Temperature change for Faroe Islands" class="graph-image">
</div>
<div class="graph">
<h3>Fiji, Rep. of</h3>
<img src="country_graphs/Fiji_Rep_of_temperature_change.png" alt="Temperature change for Fiji, Rep. of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Finland</h3>
<img src="country_graphs/Finland_temperature_change.png" alt="Temperature change for Finland" class="graph-image">
</div>
<div class="graph">
<h3>France</h3>
<img src="country_graphs/France_temperature_change.png" alt="Temperature change for France" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>French Polynesia</h3>
<img src="country_graphs/French_Polynesia_temperature_change.png" alt="Temperature change for French Polynesia" class="graph-image">
</div>
<div class="graph">
<h3>Gabon</h3>
<img src="country_graphs/Gabon_temperature_change.png" alt="Temperature change for Gabon" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Gambia, The</h3>
<img src="country_graphs/Gambia_The_temperature_change.png" alt="Temperature change for Gambia, The" class="graph-image">
</div>
<div class="graph">
<h3>Georgia</h3>
<img src="country_graphs/Georgia_temperature_change.png" alt="Temperature change for Georgia" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Germany</h3>
<img src="country_graphs/Germany_temperature_change.png" alt="Temperature change for Germany" class="graph-image">
</div>
<div class="graph">
<h3>Ghana</h3>
<img src="country_graphs/Ghana_temperature_change.png" alt="Temperature change for Ghana" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Gibraltar</h3>
<img src="country_graphs/Gibraltar_temperature_change.png" alt="Temperature change for Gibraltar" class="graph-image">
</div>
<div class="graph">
<h3>Greece</h3>
<img src="country_graphs/Greece_temperature_change.png" alt="Temperature change for Greece" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Greenland</h3>
<img src="country_graphs/Greenland_temperature_change.png" alt="Temperature change for Greenland" class="graph-image">
</div>
<div class="graph">
<h3>Grenada</h3>
<img src="country_graphs/Grenada_temperature_change.png" alt="Temperature change for Grenada" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Guadeloupe</h3>
<img src="country_graphs/Guadeloupe_temperature_change.png" alt="Temperature change for Guadeloupe" class="graph-image">
</div>
<div class="graph">
<h3>Guatemala</h3>
<img src="country_graphs/Guatemala_temperature_change.png" alt="Temperature change for Guatemala" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Guiana, French</h3>
<img src="country_graphs/Guiana_French_temperature_change.png" alt="Temperature change for Guiana, French" class="graph-image">
</div>
<div class="graph">
<h3>Guinea</h3>
<img src="country_graphs/Guinea_temperature_change.png" alt="Temperature change for Guinea" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Guinea-Bissau</h3>
<img src="country_graphs/Guinea-Bissau_temperature_change.png" alt="Temperature change for Guinea-Bissau" class="graph-image">
</div>
<div class="graph">
<h3>Guyana</h3>
<img src="country_graphs/Guyana_temperature_change.png" alt="Temperature change for Guyana" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Haiti</h3>
<img src="country_graphs/Haiti_temperature_change.png" alt="Temperature change for Haiti" class="graph-image">
</div>
<div class="graph">
<h3>Holy See</h3>
<img src="country_graphs/Holy_See_temperature_change.png" alt="Temperature change for Holy See" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Honduras</h3>
<img src="country_graphs/Honduras_temperature_change.png" alt="Temperature change for Honduras" class="graph-image">
</div>
<div class="graph">
<h3>Hungary</h3>
<img src="country_graphs/Hungary_temperature_change.png" alt="Temperature change for Hungary" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Iceland</h3>
<img src="country_graphs/Iceland_temperature_change.png" alt="Temperature change for Iceland" class="graph-image">
</div>
<div class="graph">
<h3>India</h3>
<img src="country_graphs/India_temperature_change.png" alt="Temperature change for India" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Indonesia</h3>
<img src="country_graphs/Indonesia_temperature_change.png" alt="Temperature change for Indonesia" class="graph-image">
</div>
<div class="graph">
<h3>Iran, Islamic Rep. of</h3>
<img src="country_graphs/Iran_Islamic_Rep_of_temperature_change.png" alt="Temperature change for Iran, Islamic Rep. of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Iraq</h3>
<img src="country_graphs/Iraq_temperature_change.png" alt="Temperature change for Iraq" class="graph-image">
</div>
<div class="graph">
<h3>Ireland</h3>
<img src="country_graphs/Ireland_temperature_change.png" alt="Temperature change for Ireland" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Isle of Man</h3>
<img src="country_graphs/Isle_of_Man_temperature_change.png" alt="Temperature change for Isle of Man" class="graph-image">
</div>
<div class="graph">
<h3>Israel</h3>
<img src="country_graphs/Israel_temperature_change.png" alt="Temperature change for Israel" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Italy</h3>
<img src="country_graphs/Italy_temperature_change.png" alt="Temperature change for Italy" class="graph-image">
</div>
<div class="graph">
<h3>Jamaica</h3>
<img src="country_graphs/Jamaica_temperature_change.png" alt="Temperature change for Jamaica" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Japan</h3>
<img src="country_graphs/Japan_temperature_change.png" alt="Temperature change for Japan" class="graph-image">
</div>
<div class="graph">
<h3>Jordan</h3>
<img src="country_graphs/Jordan_temperature_change.png" alt="Temperature change for Jordan" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Kazakhstan, Rep. of</h3>
<img src="country_graphs/Kazakhstan_Rep_of_temperature_change.png" alt="Temperature change for Kazakhstan, Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Kenya</h3>
<img src="country_graphs/Kenya_temperature_change.png" alt="Temperature change for Kenya" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Kiribati</h3>
<img src="country_graphs/Kiribati_temperature_change.png" alt="Temperature change for Kiribati" class="graph-image">
</div>
<div class="graph">
<h3>Korea, Dem. People's Rep. of</h3>
<img src="country_graphs/Korea_Dem_People's_Rep_of_temperature_change.png" alt="Temperature change for Korea, Dem. People's Rep. of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Korea, Rep. of</h3>
<img src="country_graphs/Korea_Rep_of_temperature_change.png" alt="Temperature change for Korea, Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Kuwait</h3>
<img src="country_graphs/Kuwait_temperature_change.png" alt="Temperature change for Kuwait" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Kyrgyz Rep.</h3>
<img src="country_graphs/Kyrgyz_Rep_temperature_change.png" alt="Temperature change for Kyrgyz Rep." class="graph-image">
</div>
<div class="graph">
<h3>Lao People's Dem. Rep.</h3>
<img src="country_graphs/Lao_People's_Dem_Rep_temperature_change.png" alt="Temperature change for Lao People's Dem. Rep." class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Latvia</h3>
<img src="country_graphs/Latvia_temperature_change.png" alt="Temperature change for Latvia" class="graph-image">
</div>
<div class="graph">
<h3>Lebanon</h3>
<img src="country_graphs/Lebanon_temperature_change.png" alt="Temperature change for Lebanon" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Lesotho, Kingdom of</h3>
<img src="country_graphs/Lesotho_Kingdom_of_temperature_change.png" alt="Temperature change for Lesotho, Kingdom of" class="graph-image">
</div>
<div class="graph">
<h3>Liberia</h3>
<img src="country_graphs/Liberia_temperature_change.png" alt="Temperature change for Liberia" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Libya</h3>
<img src="country_graphs/Libya_temperature_change.png" alt="Temperature change for Libya" class="graph-image">
</div>
<div class="graph">
<h3>Liechtenstein</h3>
<img src="country_graphs/Liechtenstein_temperature_change.png" alt="Temperature change for Liechtenstein" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Lithuania</h3>
<img src="country_graphs/Lithuania_temperature_change.png" alt="Temperature change for Lithuania" class="graph-image">
</div>
<div class="graph">
<h3>Luxembourg</h3>
<img src="country_graphs/Luxembourg_temperature_change.png" alt="Temperature change for Luxembourg" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Madagascar, Rep. of</h3>
<img src="country_graphs/Madagascar_Rep_of_temperature_change.png" alt="Temperature change for Madagascar, Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Malawi</h3>
<img src="country_graphs/Malawi_temperature_change.png" alt="Temperature change for Malawi" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Malaysia</h3>
<img src="country_graphs/Malaysia_temperature_change.png" alt="Temperature change for Malaysia" class="graph-image">
</div>
<div class="graph">
<h3>Maldives</h3>
<img src="country_graphs/Maldives_temperature_change.png" alt="Temperature change for Maldives" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Mali</h3>
<img src="country_graphs/Mali_temperature_change.png" alt="Temperature change for Mali" class="graph-image">
</div>
<div class="graph">
<h3>Malta</h3>
<img src="country_graphs/Malta_temperature_change.png" alt="Temperature change for Malta" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Marshall Islands, Rep. of the</h3>
<img src="country_graphs/Marshall_Islands_Rep_of_the_temperature_change.png" alt="Temperature change for Marshall Islands, Rep. of the" class="graph-image">
</div>
<div class="graph">
<h3>Martinique</h3>
<img src="country_graphs/Martinique_temperature_change.png" alt="Temperature change for Martinique" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Mauritania, Islamic Rep. of</h3>
<img src="country_graphs/Mauritania_Islamic_Rep_of_temperature_change.png" alt="Temperature change for Mauritania, Islamic Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Mauritius</h3>
<img src="country_graphs/Mauritius_temperature_change.png" alt="Temperature change for Mauritius" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Mayotte</h3>
<img src="country_graphs/Mayotte_temperature_change.png" alt="Temperature change for Mayotte" class="graph-image">
</div>
<div class="graph">
<h3>Mexico</h3>
<img src="country_graphs/Mexico_temperature_change.png" alt="Temperature change for Mexico" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Micronesia, Federated States of</h3>
<img src="country_graphs/Micronesia_Federated_States_of_temperature_change.png" alt="Temperature change for Micronesia, Federated States of" class="graph-image">
</div>
<div class="graph">
<h3>Moldova, Rep. of</h3>
<img src="country_graphs/Moldova_Rep_of_temperature_change.png" alt="Temperature change for Moldova, Rep. of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Monaco</h3>
<img src="country_graphs/Monaco_temperature_change.png" alt="Temperature change for Monaco" class="graph-image">
</div>
<div class="graph">
<h3>Mongolia</h3>
<img src="country_graphs/Mongolia_temperature_change.png" alt="Temperature change for Mongolia" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Montenegro</h3>
<img src="country_graphs/Montenegro_temperature_change.png" alt="Temperature change for Montenegro" class="graph-image">
</div>
<div class="graph">
<h3>Montserrat</h3>
<img src="country_graphs/Montserrat_temperature_change.png" alt="Temperature change for Montserrat" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Morocco</h3>
<img src="country_graphs/Morocco_temperature_change.png" alt="Temperature change for Morocco" class="graph-image">
</div>
<div class="graph">
<h3>Mozambique, Rep. of</h3>
<img src="country_graphs/Mozambique_Rep_of_temperature_change.png" alt="Temperature change for Mozambique, Rep. of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Myanmar</h3>
<img src="country_graphs/Myanmar_temperature_change.png" alt="Temperature change for Myanmar" class="graph-image">
</div>
<div class="graph">
<h3>Namibia</h3>
<img src="country_graphs/Namibia_temperature_change.png" alt="Temperature change for Namibia" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Nauru, Rep. of</h3>
<img src="country_graphs/Nauru_Rep_of_temperature_change.png" alt="Temperature change for Nauru, Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Nepal</h3>
<img src="country_graphs/Nepal_temperature_change.png" alt="Temperature change for Nepal" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Netherlands, The</h3>
<img src="country_graphs/Netherlands_The_temperature_change.png" alt="Temperature change for Netherlands, The" class="graph-image">
</div>
<div class="graph">
<h3>New Caledonia</h3>
<img src="country_graphs/New_Caledonia_temperature_change.png" alt="Temperature change for New Caledonia" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>New Zealand</h3>
<img src="country_graphs/New_Zealand_temperature_change.png" alt="Temperature change for New Zealand" class="graph-image">
</div>
<div class="graph">
<h3>Nicaragua</h3>
<img src="country_graphs/Nicaragua_temperature_change.png" alt="Temperature change for Nicaragua" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Niger</h3>
<img src="country_graphs/Niger_temperature_change.png" alt="Temperature change for Niger" class="graph-image">
</div>
<div class="graph">
<h3>Nigeria</h3>
<img src="country_graphs/Nigeria_temperature_change.png" alt="Temperature change for Nigeria" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Niue</h3>
<img src="country_graphs/Niue_temperature_change.png" alt="Temperature change for Niue" class="graph-image">
</div>
<div class="graph">
<h3>Norfolk Island</h3>
<img src="country_graphs/Norfolk_Island_temperature_change.png" alt="Temperature change for Norfolk Island" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>North Macedonia, Republic of </h3>
<img src="country_graphs/North_Macedonia_Republic_of__temperature_change.png" alt="Temperature change for North Macedonia, Republic of " class="graph-image">
</div>
<div class="graph">
<h3>Norway</h3>
<img src="country_graphs/Norway_temperature_change.png" alt="Temperature change for Norway" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Oman</h3>
<img src="country_graphs/Oman_temperature_change.png" alt="Temperature change for Oman" class="graph-image">
</div>
<div class="graph">
<h3>Pakistan</h3>
<img src="country_graphs/Pakistan_temperature_change.png" alt="Temperature change for Pakistan" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Palau, Rep. of</h3>
<img src="country_graphs/Palau_Rep_of_temperature_change.png" alt="Temperature change for Palau, Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Panama</h3>
<img src="country_graphs/Panama_temperature_change.png" alt="Temperature change for Panama" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Papua New Guinea</h3>
<img src="country_graphs/Papua_New_Guinea_temperature_change.png" alt="Temperature change for Papua New Guinea" class="graph-image">
</div>
<div class="graph">
<h3>Paraguay</h3>
<img src="country_graphs/Paraguay_temperature_change.png" alt="Temperature change for Paraguay" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Peru</h3>
<img src="country_graphs/Peru_temperature_change.png" alt="Temperature change for Peru" class="graph-image">
</div>
<div class="graph">
<h3>Philippines</h3>
<img src="country_graphs/Philippines_temperature_change.png" alt="Temperature change for Philippines" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Pitcairn Islands</h3>
<img src="country_graphs/Pitcairn_Islands_temperature_change.png" alt="Temperature change for Pitcairn Islands" class="graph-image">
</div>
<div class="graph">
<h3>Poland, Rep. of</h3>
<img src="country_graphs/Poland_Rep_of_temperature_change.png" alt="Temperature change for Poland, Rep. of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Portugal</h3>
<img src="country_graphs/Portugal_temperature_change.png" alt="Temperature change for Portugal" class="graph-image">
</div>
<div class="graph">
<h3>Puerto Rico</h3>
<img src="country_graphs/Puerto_Rico_temperature_change.png" alt="Temperature change for Puerto Rico" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Qatar</h3>
<img src="country_graphs/Qatar_temperature_change.png" alt="Temperature change for Qatar" class="graph-image">
</div>
<div class="graph">
<h3>Romania</h3>
<img src="country_graphs/Romania_temperature_change.png" alt="Temperature change for Romania" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Russian Federation</h3>
<img src="country_graphs/Russian_Federation_temperature_change.png" alt="Temperature change for Russian Federation" class="graph-image">
</div>
<div class="graph">
<h3>Rwanda</h3>
<img src="country_graphs/Rwanda_temperature_change.png" alt="Temperature change for Rwanda" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Saint Helena</h3>
<img src="country_graphs/Saint_Helena_temperature_change.png" alt="Temperature change for Saint Helena" class="graph-image">
</div>
<div class="graph">
<h3>Saint Pierre and Miquelon</h3>
<img src="country_graphs/Saint_Pierre_and_Miquelon_temperature_change.png" alt="Temperature change for Saint Pierre and Miquelon" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Samoa</h3>
<img src="country_graphs/Samoa_temperature_change.png" alt="Temperature change for Samoa" class="graph-image">
</div>
<div class="graph">
<h3>San Marino, Rep. of</h3>
<img src="country_graphs/San_Marino_Rep_of_temperature_change.png" alt="Temperature change for San Marino, Rep. of" class="graph-image">
</div>
</div>
<div class="graph-row"></div>
<div class="graph">
<h3>Colombia</h3>
<img src="country_graphs/Colombia_temperature_change.png" alt="Temperature change for Colombia" class="graph-image">
</div>
<div class="graph">
<h3>Saudi Arabia</h3>
<img src="country_graphs/Saudi_Arabia_temperature_change.png" alt="Temperature change for Saudi Arabia" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Senegal</h3>
<img src="country_graphs/Senegal_temperature_change.png" alt="Temperature change for Senegal" class="graph-image">
</div>
<div class="graph">
<h3>Serbia, Rep. of</h3>
<img src="country_graphs/Serbia_Rep_of_temperature_change.png" alt="Temperature change for Serbia, Rep. of" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Seychelles</h3>
<img src="country_graphs/Seychelles_temperature_change.png" alt="Temperature change for Seychelles" class="graph-image">
</div>
<div class="graph">
<h3>Sierra Leone</h3>
<img src="country_graphs/Sierra_Leone_temperature_change.png" alt="Temperature change for Sierra Leone" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Singapore</h3>
<img src="country_graphs/Singapore_temperature_change.png" alt="Temperature change for Singapore" class="graph-image">
</div>
<div class="graph">
<h3>Slovak Rep.</h3>
<img src="country_graphs/Slovak_Rep_temperature_change.png" alt="Temperature change for Slovak Rep." class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Slovenia, Rep. of</h3>
<img src="country_graphs/Slovenia_Rep_of_temperature_change.png" alt="Temperature change for Slovenia, Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Solomon Islands</h3>
<img src="country_graphs/Solomon_Islands_temperature_change.png" alt="Temperature change for Solomon Islands" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Somalia</h3>
<img src="country_graphs/Somalia_temperature_change.png" alt="Temperature change for Somalia" class="graph-image">
</div>
<div class="graph">
<h3>South Africa</h3>
<img src="country_graphs/South_Africa_temperature_change.png" alt="Temperature change for South Africa" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>South Sudan, Rep. of</h3>
<img src="country_graphs/South_Sudan_Rep_of_temperature_change.png" alt="Temperature change for South Sudan, Rep. of" class="graph-image">
</div>
<div class="graph">
<h3>Spain</h3>
<img src="country_graphs/Spain_temperature_change.png" alt="Temperature change for Spain" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Sri Lanka</h3>
<img src="country_graphs/Sri_Lanka_temperature_change.png" alt="Temperature change for Sri Lanka" class="graph-image">
</div>
<div class="graph">
<h3>St. Kitts and Nevis</h3>
<img src="country_graphs/St_Kitts_and_Nevis_temperature_change.png" alt="Temperature change for St. Kitts and Nevis" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>St. Lucia</h3>
<img src="country_graphs/St_Lucia_temperature_change.png" alt="Temperature change for St. Lucia" class="graph-image">
</div>
<div class="graph">
<h3>St. Vincent and the Grenadines</h3>
<img src="country_graphs/St_Vincent_and_the_Grenadines_temperature_change.png" alt="Temperature change for St. Vincent and the Grenadines" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Sudan</h3>
<img src="country_graphs/Sudan_temperature_change.png" alt="Temperature change for Sudan" class="graph-image">
</div>
<div class="graph">
<h3>Suriname</h3>
<img src="country_graphs/Suriname_temperature_change.png" alt="Temperature change for Suriname" class="graph-image">
</div>
</div>
<div class="graph-row">
<div class="graph">
<h3>Sweden</h3>
<img src="country_graphs/Sweden_temperature_change.png" alt="Temperature change for Sweden" class="graph-image">
</div>
<div class="graph">
<h3>Switzerland</h3>
<img src="country_graphs/Switzerland_temperature_change.png" alt="Temperature change for Switzerland" class="graph-image">
</div>
</div>