-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (32 loc) · 1.34 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="./style.css">
<title>Feedback dashboard</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light" style="background-color: #e3f2fd;">
<span class="navbar-brand">Feedback Dashboard</span>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav mr-auto mt-2 mt-lg-0"></ul>
<div class="form-inline my-2 my-lg-0">
<button class="btn btn-outline-success my-2 my-sm-0" id="dashboardBtn">Summary</button>
</div>
</div>
</nav>
<div class="main-content text-center">
<div id="timeLine">Timeline graph</div>
<div class="graph-hidden" id="summaryPie">Pie graph</div>
</div>
<!-- Add reference to jquery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js" ></script>
<!-- Add references to script files -->
<script src="./scripts/scripts.js"></script>
<script src="./scripts/c3.js"></script>
</body>
</html>