forked from billiam001/stephenturner.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example-1-test.html
37 lines (29 loc) · 1008 Bytes
/
example-1-test.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ex 1: time-series solution</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="/">Lab 3</a>
<div>
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="/">All Examples <span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</nav>
<div class="container">
<div class="row mt-5">
<div class="col">
<div id="series-chart"></div>
</div>
</div>
</div>
<script src="scripts/highcharts.js"></script>
<script src="scripts/example-1.js"></script>
</body>
</html>