-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathabout.html
executable file
·65 lines (60 loc) · 2.79 KB
/
about.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
61
62
63
64
65
<!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 class="active"><a href="#">About</a></li>
<li><a href="help.html">Help</a></li>
</ul>
</div>
</div>
</nav>
<div class="row aboutDescription">
<div class="col-md-10">
<h1>About</h1>
<p>
Intelli-Home system helps you interact with your home through our connected IoT technology. It brings intelligence to your day to day devices. <br><br>
Forgot to switch off your desk lamp while leaving to office? <br>
Want to keep your home at a comfortable temperature? <br>
Need a security system to be notified when some intrusion happens? <br><br>
No worries, we got you covered. Our advanced technology sensors and control systems will give you peace of mind. Guaranteed! <br>
</p>
</div>
</div>
<div class="row names">
<div class="col-md-8">
<p>
Designed and developed by, <br><br>
Sreejith Unnikrishnan <br>
Yashank Sakhardande <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>