-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (36 loc) · 1.37 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- insert relevant title here -->
<title>Untitled</title>
<!-- better default styles for css -->
<link href="https://necolas.github.io/normalize.css/3.0.2/normalize.css" rel="stylesheet">
<!-- styles for nvd3 -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.7.0/nv.d3.css" rel="stylesheet">
<!-- your styles -->
<link href="assets/css/app.css" rel="stylesheet">
<!--
Included libaries
- jquery https://jquery.com
- underscore http://jashkenas.github.io/underscore/
- d3 http://github.com/mbostock/d3/wiki
- nvd3 http://nvd3.org/examples/index.html
-->
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.7.0/nv.d3.js"></script>
<!-- your source -->
<script src="assets/js/app.js"></script>
</head>
<body>
<div class="container">
<h1>Example Chart</h1>
<p>Insert graph <em>here<em>.</p>
<svg id="example-chart"/>
<p id="example-current-value">No Data</p>
<!-- html here -->
</div>
</body>
</html>