-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 874 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 874 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
27
28
29
30
31
<!DOCTYPE html>
<meta charset="utf-8">
<html lang="en">
<head>
<title>Project Index</title>
<!--jQuery to make JavaScript easier-->
<!--Let's make the Ajax calls!-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<!--D3 for the graphics-->
<script src="https://d3js.org/d3.v4.min.js"></script>
<!--Lodash to handle all our objects and arrays-->
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.4/lodash.min.js"></script>
<script src="src/js/mainfunctions.js"></script>
<!--svg-->
<svg class="chart-container"></svg>
<svg width="960" height="500"></svg>
</head>
<style>
.chart rect {
fill: steelblue;
}
.chart text{
fill: white-space;
font: 10px sans-serif;
text-anchor: end;
}
</style>
<body>
</body>
</html>