-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 824 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 824 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>
<head>
<meta charset="utf-8">
<!-- this is the title that goes in the browser tab name -->
<title>Interactive Data Visualization Tutorial</title>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<h1>Modules</h1>
</header>
<div id="dashboard">
<!-- all we need is an element to select -->
<div id="table"> </div>
<div id="barchart"> </div>
<div id="count"> </div>
</div>
<!-- this is the line that loads in d3 -->
<script src="https://d3js.org/d3.v7.min.js"></script>
<!-- this is the line that loads in the main js script -->
<script type="module" src="./main.js"></script>
</body>
</html>