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/4-choropleth/index.html

23 lines
No EOL
850 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Freecodecamp Choropleth map</title>
<link rel="stylesheet" href="index.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/7.6.1/d3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/3.0.2/topojson.min.js"></script>
<script src="https://d3js.org/d3-scale-chromatic.v1.min.js"></script>
</head>
<body>
<h1 id="title">United States Educational Attainment</h1>
<p id="description"> Percentage of adults age 25 and older with a bachelor's degree or higher (2010-2014)</p>
<div id="chart">
<svg width="960" height="600"></svg>
</div>
<div id="legend"></div>
<div id="tooltip"></div>
<script src="index.js"></script>
<script src='https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js'></script>
</body>
</html>