-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathhelp.html
executable file
·60 lines (55 loc) · 2.66 KB
/
help.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
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>Intelli-Home Systems</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Open+Sans|Roboto|Quicksand' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav role="navigation" class="navbar navbar-default navbar-fixed-top navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" data-target="#navbarCollapse" data-toggle="collapse" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand">IH</a>
</div>
<!-- Collection of nav links and other content for toggling -->
<div id="navbarCollapse" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Mission Control</a></li>
<li><a href="#">History</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Login</a></li>
<li><a href="about.html">About</a></li>
<li class="active"><a href="help.html">Help</a></li>
</ul>
</div>
</div>
</nav>
<div class="row helpInitialtext">
<div class="col-md-12">
<h2> Intelli-Home Systems </h2>
<p>
Mission control dashboard gives you a succinct overview of the system status <br>
We will have 4 distict sections on the mission control webpage as follows <br> <br>
1. TEMPERATURE : It shows the current ambient temperature of the room <br>
2. HUMIDITY : It displays the humidity content of the room <br>
3. LAMP STATUS : Shows the ON/OFF status of the lamp <br>
4. DISTANCE SENSOR : Shows if any door is opened or not <br>
</p>
<p>
If you any doubts please contact the customer care. <br>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</body>
</html>