19 lines
No EOL
494 B
HTML
19 lines
No EOL
494 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Freecodecamp Treemap diagram</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">Video Game Sales</h1>
|
|
<p id="description">Top 100 Most Sold Video Games Grouped by Platform</p>
|
|
<div id="chart">
|
|
</div>
|
|
<div id="legend"></div>
|
|
<div id="tooltip"></div>
|
|
<script src="index.js"></script>
|
|
</body>
|
|
</html> |