18 lines
497 B
HTML
18 lines
497 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>FreeCodeCamp Heat Map</title>
|
||
|
<link rel="stylesheet" href="index.css">
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.6.1/d3.min.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1 id="title">Monthly Global Land-Surface Temperature</h1>
|
||
|
<p id="description">1753 - 2015: base temperature 8.66℃</p>
|
||
|
<div id="chart"></div>
|
||
|
<div id="legend"></div>
|
||
|
<div id="tooltip"></div>
|
||
|
|
||
|
<script src="index.js"></script>
|
||
|
</body>
|
||
|
</html>
|