-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<title>Climate Stripes</title>
<meta charset="UTF-8" />
<link rel="icon" href="data:;base64,iVBORwOKGO=" />
<link rel="stylesheet" href="css/style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
</head>
<body>
<div class="app">
<h1>Climate Stripes</h1>
<h5>
Annual surface temperature change with respect to a baseline
climatology, corresponding to the period 1961-2022
</h5>
<div>Source: Food and Agriculture Organization of the United Nations</div>
<div class="pt-4">Select a country</div>
<select name="country" id="country" class="form-select w-25"></select>
<div id="vis-dynamic"></div>
<div class="vis-wrapper"></div>
<div id="tooltip"></div>
</div>
<!-- D3 bundle -->
<script src="js/d3.v6.min.js"></script>
<!-- Our JS code -->
<script src="js/stripeChart.js"></script>
<script src="js/main.js"></script>
</body>
</html>