-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (28 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>timeline</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="app.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.bundle.min.js"></script>
<script src="app.js"></script>
</head>
<body>
<nav class="navbar navbar-light bg-primary text-white">
<span class="m-auto">
Select <select id="dropdown"></select> or Search by Badge Number <input id="search" type="text">
</span>
</nav>
<div class="alert alert-secondary">
Right now OPA data is only available up to 2017
</div>
<div id="content">
</div>
<script>
$(document).ready(getData);
</script>
</body>
</html>