-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 729 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>Scatterplot Graph</title>
</head>
<body>
<div class="container">
<h1 id="title">Doping in Professional Bicycle Racing</h1>
<h2>35 Fastest times up Alpe d'Huez</h2>
<svg width="900" height="600" id="chart"></svg>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<script src="https://cdn.jsdelivr.net/npm/d3@7"></script>
<script src="./index.js"></script>
</div>
</body>
</html>