-
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) · 764 Bytes
/
index.html
File metadata and controls
18 lines (18 loc) · 764 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RDW Data Pie Chart</title>
<script src="https://unpkg.com/d3@6.2.0/dist/d3.min.js"></script>
<link rel="stylesheet" href="static/css/style.css">
</head>
<body>
<h1>How many Park & Ride places have been made per year?</h1>
<p>Hover over the pieces to see how many the number is.<p>
<p>The example I have used you can find <a href="https://www.youtube.com/watch?v=lnXf1mpFGb8&t=78s&ab_channel=FrontendTips">here<a>.</p>
<svg width="500" height="500"></svg>
</body>
<!-- <script type="module" src="static/js/script.js"></script> -->
<script src="static/js/bundle.js"></script>
</html>