-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (18 loc) · 970 Bytes
/
index.html
File metadata and controls
18 lines (18 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Doping in Cycling</title>
</head>
<body>
<h1>Doping in Professional Cycling</h1>
<h2>35 Fastest times up Alpe d'Huez</h2>
<svg class="canvas"></svg>
<div class="tooltip hide"></div>
<footer class="footer">By <a target="_blank" href="https://github.com/Solarc117">Carlos Bernal</a>. Data and project concept by <a target="_blank" href="https://www.freecodecamp.org/learn/data-visualization/data-visualization-projects/visualize-data-with-a-scatterplot-graph">fCC</a>. <a href="https://raw.githubusercontent.com/freeCodeCamp/ProjectReferenceData/master/cyclist-data.json">Source</a>.</footer>
<script type="module" src="script.js"></script>
</body>
</html>