-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 1.58 KB
/
index.html
File metadata and controls
47 lines (44 loc) · 1.58 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!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>
<link rel="stylesheet" href="./style.css" />
<link href="https://fonts.googleapis.com/css2?family=Bungee&family=Bungee+Shade&family=Bungee+Spice&family=Exo:ital,wght@0,100..900;1,100..900&family=Finger+Paint&family=Honk&&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Play:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" href="logo-7.png"/>
</head>
<body>
<header>
<div class="logobox">
<img src="logo-7.png" alt="logo" class="logo"/>
<h1>Scatterplot Graph using Cartesian coordinates</h1>
</div>
</header>
<div id="container">
<h1 id="title">Doping in Professional Bicycle Racing</h1>
<svg id="plot"></svg>
<div id="legend"></div>
<div id="tooltip" class="hidden"></div>
</div>
<section id="post">
<div class="post-header">
<h1>
First 100 Cyclists
</h1>
</div>
</section>
<footer>
<p>
Challenge by
<a href="https://www.freecodecamp.org/learn/data-visualization/data-visualization-projects/visualize-data-with-a-scatterplot-graph" target="_blank"
>freeCodeCamp</a
>
</p>
</footer>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
<script src="index.js"></script>
<script src="post.js"></script>
</body>
</html>