-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (90 loc) · 3.55 KB
/
index.html
File metadata and controls
102 lines (90 loc) · 3.55 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Landscape Change Monitor</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/master.css">
</head>
<body>
<!-- Navigation-Bar begin -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<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="./index.html" class="navbar-brand">Home</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="./browse.html">Browse Locations</a></li>
<li><a href="./aboutus.html">About us</a></li>
</ul>
<form class="navbar-form navbar-right">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default"><a href="./browse.html">Submit</a></button>
</form>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- Navigation-Bar ends -->
<!-- Header content begins-->
<div class="container">
<div class=" jumbotron">
<div class="row">
<img src="images/isro.png" id="isroLogo" class="col-lg-2 col-xs-3">
<h1 class="col-lg-8 col-xs-8" id="lcms"> Landscape Change Monitoring System</h1>
</div>
<p>BHUVAN based system which monitors major change in selected areas through satellite imagery.</p>
</div>
</div>
<!-- Header content ends -->
<!-- zones in grid -->
<div class="container">
<div class="row">
<div id="homeNorth" class="col-lg-6 col-sm-6 homeZone">
<div class="thumbnail">
<img src="images/north.jpg" alt="">
<a href="browse.html" data-id="scrollNorth"></a>
</div>
</div>
<div id="homeEast" class="col-lg-6 col-sm-6 homeZone">
<div class="thumbnail">
<img src="images/east.jpg" alt="">
<a href="browse.html" data-id="scrollEast"></a>
</div>
</div>
<div id="homeWest" class="col-lg-6 col-sm-6 homeZone">
<div class="thumbnail">
<img src="images/west.jpg" alt="">
<a href="browse.html" data-id="scrollWest"></a>
</div>
</div>
<div id="homeSouth" class="col-lg-6 col-sm-6 homeZone">
<div class="thumbnail">
<img src="images/south.jpg" alt="">
<a href="browse.html" data-id="scrollSouth"></a>
</div>
</div>
</div>
</div>
<!-- zones grid over -->
<br>
<hr>
<br>
<script src="script/jquery-3.1.1.min.js"></script>
<script src="script/scroll.js"></script>
<script src="script/bootstrap.min.js"></script>
<!-- <script type="text/javascript" src="script/lcms.js"></script> -->
</body>
</html>