-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 761 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 761 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scatterplot graph</title>
<script src="https://d3js.org/d3.v5.min.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<svg id="canvas">
<text id = 'title' x='250' y='20'>Doping in Professional Bicycle Racing</text>
</svg>
<div id ='legend'>
Year (x) vs Time (y)<br />
Orange = Doping Allegation |
Green = No Doping Allegation
</div>
<div id = 'tooltip'>
</div>
</body>
<script defer src="./script.js"></script>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</html>