-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeatmap.html
More file actions
29 lines (27 loc) · 1023 Bytes
/
Heatmap.html
File metadata and controls
29 lines (27 loc) · 1023 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.8.5/d3.min.js"></script>
<!-- <script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script> -->
<!-- <script src="https://unpkg.com/d3-v6-tip@1.0.6/build/d3-v6-tip.js"></script> -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JS - Heat Map</title>
</head>
<body>
<div class="main">
<div class="container">
<h1 id="title">Monthly Global Land-Surface Temperature</h1>
<h3 id="description"></h3>
<svg id="chart" class="graph"></svg>
<div class="legendHolder" id="legend">
<div class="Label">Temperature color code</div>
<svg id="palette" class="palette"></svg>
</div>
<div class="tooltip", id="tooltip"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>