-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (19 loc) · 851 Bytes
/
index.html
File metadata and controls
21 lines (19 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
<link title="timeline-styles" rel="stylesheet"
href="https://cdn.knightlab.com/libs/timeline3/latest/css/timeline.css">
<script src="https://cdn.knightlab.com/libs/timeline3/latest/js/timeline.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script type="text/javascript" language="javascript" src="whitney.json"></script>
<script type="text/javascript">
$.getJSON("whitney.json", function (data) {
var timeline_json = data;
window.timeline = new TL.Timeline('timeline-embed', timeline_json);
});
</script>
</head>
<body>
<div id='timeline-embed' style="width: 100%; height: 600px"></div>
</body>
</html>