-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 932 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Global Warming Scale</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div class="container">
<h1 class="page-title">Global Temperature Changing Dynamic</h1>
<h3>Observed years 1880 - 2020</h3>
<canvas id="chart1" class="chart"></canvas>
<h3>Observed years 1981 - 2020</h3>
<canvas id="chart2" class="chart"></canvas>
</div>
<script src="./js/papaparse.min.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.bundle.min.js"
integrity="sha512-SuxO9djzjML6b9w9/I07IWnLnQhgyYVSpHZx0JV97kGBfTIsUYlWflyuW4ypnvhBrslz1yJ3R+S14fdCWmSmSA=="
crossorigin="anonymous"
></script>
<script src="./index.js" type="module"></script>
</body>
</html>