-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (47 loc) · 1.77 KB
/
index.html
File metadata and controls
51 lines (47 loc) · 1.77 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<meta charset='utf-8'>
<!-- Title of Webpage -->
<title>BMI DASHBOARD</title>
<head>
<!-- Load custom stylesheet -->
<link rel='stylesheet' type='text/css' href='style.css'>
<!-- Load Materialize and Jqurey -->
<link rel='stylesheet' type='text/css' href='materialize/css/materialize.min.css'>
<script type='text/javascript' src='jquery.min.js'></script>
</head>
<body>
<!-- Navigation Bar -->
<nav>
<div class="nav-wrapper">
<a href="index.html" class="brand-logo center">BMI DashBoard</a>
<ul id="nav-mobile" class="left hide-on-med-and-down">
<li><a href="index.html">Dates</a></li>
</ul>
</div>
</nav>
<!-- Section with dates for PV(Solar Pannels) -->
<div class="row">
<div class="col s12 m12">
<div class="collection">
<h4>Solar Panels - PV</h4>
<h6><a href="pv1.html" class="collection-item">2015-05-01</a><h6>
<h6><a href="pv2.html" class="collection-item">2015-05-02</a><h6>
<h6><a href="pv3.html" class="collection-item">2015-05-03</a><h6>
<h6><a href="pv4.html" class="collection-item">2015-05-04</a><h6>
<h6><a href="pv5.html" class="collection-item">2015-05-05</a><h6>
</div>
</div>
</div>
<!-- Section with dates for BMS -->
<div class="row">
<div class="col s12 m12">
<div class="collection">
<h4>Utility Usage - BMS</h4>
<h6><a href="bms1.html" class="collection-item">2015-29-07</a><h6>
</div>
</div>
</div>
</body>
</html>
<!-- Laod materialize js -->
<script type='text/javascript' src='materialize/js/materialize.min.js'></script>