I have a script tag set up to pull in D3. Well, it’s not doing that and I don’t understand the error messages in the inspection.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<script src="https://d3js.org/d3.v5.min.js"></script>
<title>Heat Map</title>
</head>
<body>
<svg id="canvas">
</svg>
</body>
<script defer src="script.js"></script>
<script defer src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</html>