-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 712 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Active User Tracking</title>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="application">
<h3>Active user ratio changes over time</h3>
<div id="view-toggle" class="btn-group">
<button id="table-view" class="btn active">Table</button>
<button id="graph-view" class="btn">Graph</button>
</div>
<div id="modules">
<p id="sub-title" class="lead"></p>
<div id="data-table"></div>
<div id="data-graph"></div>
</div>
</div>
<script src="chart.js"></script>
</body>
</html>