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/2-scatterplot/index.html

20 lines
No EOL
581 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FreeCodeCamp Scatterplot Graph</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>
<div id="chart">
<h1 id="title">Doping in Professional Bicycle Racing</h1>
<div id="legend" style="font-size: 6px">
it's very funny that there are no actual requirements for the content of the 'Legend' element
</div>
</div>
<div id="tooltip"></div>
<script src="index.js"></script>
</body>
</html>