This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
freecodecamp-projects/4-data-visualization/3-heat-map/index.html

18 lines
No EOL
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>