-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblankSlate.html
57 lines (48 loc) · 1.44 KB
/
blankSlate.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<!--Author: Daniel Glasson
Student#: c3301428
dateCreated: 26/08/2019
lastEdited: 13/09/2019
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<!--Need to add some title that is imaginative here-->
<link rel="stylesheet" type="text/css" href="main.css">
<style>
#Copyright {color: orange}
</style>
<title>Monitoring Home</title>
</head>
<body>
<div class="main" style="margin: 1cm;">
<h1 class="heading" style="text-align: center; text-decoration: overline underline">Monitoring Home</h1>
<!--menu - ul with css used to turn into horizontal navigation-->
<div class="navbar">
<a href="index.html">Home</a>
<div class="dropdown">
<button class="dropbtn">Irrigation
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Tank
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
</div>
<hr>
<p>If a link doesn't work, it is because the appropriate sensor has not sent any data</p>
</div>
</body>
</html>