-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 1.08 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>D3 Test</title>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="bower_components/datatables/media/css/jquery.dataTables.css">
<script type="text/javascript" src="bower_components/d3/d3.js"></script>
<script type="text/javascript" src="bower_components/lodash/lodash.js"></script>
<script type="text/javascript" src="bower_components/jquery/dist/jquery.js"></script>
<script type="text/javascript" src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script type="text/javascript" src="bower_components/datatables/media/js/jquery.dataTables.js"></script>
</head>
<body>
<div class="graph" id="lines-graph"></div>
<div>
<table id="uni-var-table" class="display"></table>
<table id="multi-var-table" class="display"></table>
</div>
<script type="text/javascript" src="vis.js"></script>
</body>
</html>