forked from tmrt-kjsce/TMRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
326 lines (286 loc) · 14.4 KB
/
index.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
<!DOCTYPE html>
<html lang="en">
<head>
<title>TMRT</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="TMRTlogosqtrans.png" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.8.1/baguetteBox.min.css">
<link rel="stylesheet" href="hdrftr.css">
<link rel="stylesheet" href="tmrthome.css">
<link href="logo-nav.css" rel="stylesheet">
</head>
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="60">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid" id="nav">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-left">
<a class="navbar-brand" href="index.html"><img src="logotmrt.png" id="tmrtlogo" alt="logo" style="float:left"/></a>
</div>
<a href="index.html"><h1 class="brand brand-name navbar-left" id="logoname" style="float:left;font-size:23px;color:#fff;margin-left:15px;margin-top:23px;display:inline;"><div class="navbar-left desktop-only"> THE MARINE ROBOTICS TEAM</h1></a></div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">ABOUT</a></li>
<li><a href="#sponsors">SPONSORS</a></li>
<li><a href="#gallery">GALLERY</a></li>
<li><a href="https://www.somaiya.edu/kjsce" target="_blank">KJSCE</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</div>
</div>
</div>
</nav>
<!-- Container (Slideshow Section) -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active col-xs-12">
<img src="tmrtcolor.png" alt="tmrt" >
<div class="carousel-caption">
<h3>Bot 1.0</h3>
<p>New in town</p>
</div>
</div>
<div class="item col-xs-12">
<img src="tmrtgrey.png" alt="tmrt" >
<div class="carousel-caption">
<h3>Bot 1.0</h3>
<p>Rogue</p>
</div>
</div>
<div class="item col-xs-12">
<img src="tmrtcolor.png" alt="tmrt" >
<div class="carousel-caption">
<h3>Bot 1.0</h3>
<p>Simple</p>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Container (About Section) -->
<div id="about" class="container-fluid bg-grey">
<div class="row">
<div class="col-sm-4"><img src="tmrtcolor.png" width="100%"></div>
<div class="col-sm-8">
<h2>About The Marine Robotics Team</h2><br>
<h4 style="text-align:justify">The Marine Robotics Team (TMRT) is a student team from K. J. Somaiya College of Engineering, Vidyavihar and that focuses on building autonomous marine systems. TMRT is formed by thirty passionate undergraduate students across four years from various departments who want to apply their knowledge to design and engineer an Autonomous Underwater Vehicle (AUV). Dr. N. R. Gilke is the faculty coordinator of TMRT. We aim to compete in various National and International competitions like NIOT SAVe, SAUVC ROBOSUB and SAUC-E and in the coming years.
</h4><br>
<p>Want to know more About Us</p>
<br><a href="team.html"><button class="btn btn-default btn-lg" id="morebtn">Our Team</button></a>
</div>
</div>
</div>
<!-- Container (Sponsors Section) -->
<div id="sponsors" class="container-fluid text-center">
<h2>Sponsors</h2>
<div id ="center">
<a href="index.html#contact"><button class="btn btn-default btn-lg" id="morebtn">Become A Sponsor</button></a>
</div>
<div id = "logos">
<div class="row">
<div class="col-sm-4 col-xs-6" ><a href="" target="_blank"><img alt="" src="tmrtcolor.png" width="90%"></a></div>
<div class="col-sm-4 col-xs-6" ><a href="" target="_blank"><img alt="" src="tmrtcolor.png" width="90%"></a></div>
<div class="col-sm-4 col-xs-6" ><a href="" target="_blank"><img alt="" src="tmrtcolor.png" width="90%"></a></div>
<div class="col-sm-4 col-xs-6" ><a href="" target="_blank"><img alt="" src="tmrtcolor.png" width="90%"></a></div>
<div class="col-sm-4 col-xs-6" ><a href="" target="_blank"><img alt="" src="tmrtcolor.png" width="90%"></a></div>
<div class="col-sm-4 col-xs-6" ><a href="" target="_blank"><img alt="" src="tmrtcolor.png" width="90%"></a></div>
</div>
<a href="sponsors.html"><button class="btn btn-default btn-lg" id="morebtn">View More</button></a>
</div>
</div>
<!-- Container (Gallery Section) -->
<div id="gallery" class="container-fluid bg-grey text-center">
<h2>Gallery</h2>
<h4>Some of Our Pics</h4>
<div class="gal">
<div class="row">
<div class="col-sm-6 col-md-4">
<a class="lightbox" href="imgs/gallery/g1.jpg">
<img src="imgs/gallery/g1.jpg" alt="">
</a>
</div>
<div class="col-sm-6 col-md-4">
<a class="lightbox" href="imgs/gallery/g2.JPG">
<img src="imgs/gallery/g2.JPG" alt="">
</a>
</div>
<div class="col-sm-6 col-md-4">
<a class="lightbox" href="imgs/gallery/g3.jpg">
<img src="imgs/gallery/g3.jpg" alt="">
</a>
</div>
<div class="col-sm-6 col-md-4 desktop-only">
<a class="lightbox" href="imgs/gallery/g10.JPG">
<img src="imgs/gallery/g10.JPG" alt="">
</a>
</div>
<div class="col-sm-6 col-md-4 desktop-only">
<a class="lightbox" href="imgs/gallery/g8.JPG">
<img src="imgs/gallery/g8.JPG" alt="">
</a>
</div>
<div class="col-sm-6 col-md-4 desktop-only">
<a class="lightbox" href="imgs/gallery/g6.jpg">
<img src="imgs/gallery/g6.jpg" alt="">
</a>
</div>
</div>
</div>
<a href="gallery.html"><button class="btn btn-default btn-lg" id="morebtn"><span class="glyphicon glyphicon-picture"></span> View More</button></a>
</div>
<!-- Container (Contact Section) -->
<div id="contact" class="container-fluid">
<h2 class="text-center">CONTACT</h2>
<div class="row">
<div class="col-sm-5">
<p>Contact us and we'll get back to you within 24 hours.</p>
<p><span class="glyphicon glyphicon-map-marker"></span> K. J. Somaiya College Of Engineering, Vidyavihar, Mumbai</p>
<p><span class="glyphicon glyphicon-phone"></span> +91 9999999999</p>
<p><span class="glyphicon glyphicon-envelope"></span> [email protected]</p>
</div>
<div class="col-sm-7 slideanim">
<script type="text/javascript">var submitted=false;</script>
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;"
onload="if(submitted) {window.location='index.html';}"></iframe>
<form role="form" id="contactForm" action ="https://docs.google.com/forms/d/e/1FAIpQLScVOQXJx3YPNWMhupRWouVg7cF5-Yl2k4D41ZM_vMzb30113g/formResponse" class="contact-form" data-toggle="validator" method="post" target="hidden_iframe" onsubmit="submitted=true;">
<div class="form-group required col-sm-12 col-md-6">
<div class="controls">
<input type="text" name = "entry.321773460" id="name" class="form-control" placeholder="Name" required data-error="Please enter your name">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="form-group col-sm-12 col-md-6">
<div class="controls">
<input type="text" name = "entry.2105717789" id="company_name" class="form-control" placeholder="Company name(optional)" >
<div class="help-block with-errors"></div>
</div>
</div>
<div class="form-group col-sm-12 col-md-6">
<div class="controls">
<input type="email" name = "entry.973871534" class="email form-control" id="email" placeholder="Email" required data-error="Please check your email address">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="form-group col-sm-12 col-md-6">
<div class="controls">
<input type="text" name = "entry.1513075963" id = "phone" class="form-control bfh-phone" data-country="India" placeholder="Phone number" required data-error="Please enter your phone number">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="form-group col-sm-12 col-md-12">
<div class="controls">
<input type="text" name = "entry.282096562" id="msg_subject" class="form-control" placeholder="Subject" required data-error="Please enter your message subject">
<div class="help-block with-errors"></div>
</div>
</div>
<div class="form-group col-sm-12 col-md-12">
<div class="controls">
<textarea id="message" name = "entry.323410244" rows="7" placeholder="Message" class="form-control" required data-error="Write your message"></textarea>
<div class="help-block with-errors"></div>
</div>
</div>
<button type="submit" id="submit" class="btn btn-success center"> Send Message</button>
<div id="msgSubmit" class="h3 text-center hidden"></div>
<div class="clearfix"></div>
</form>
</div>
</div>
</div>
<!-- Add Google Maps -->
<div id="googleMap" style="height:400px;width:100%;"><iframe width=100% height=100% frameborder="0" style="border:0" src="https://www.google.com/maps/embed/v1/place?q=place_id:ChIJqcoLoifG5zsRKgXA6s87_bI&key=AIzaSyDRBmZOu_TAou6zkVtGTcVuji2tnush-Kg" allowfullscreen></iframe></div>
<script>
function myMap() {
var myCenter = new google.maps.LatLng(19.073084, 72.899822);
var mapProp = {center:myCenter, zoom:15%, scrollwheel:false, draggable:false, mapTypeId:google.maps.MapTypeId.ROADMAP};
var map = new google.maps.Map(document.getElementById("googleMap"),mapProp);
var marker = new google.maps.Marker({position:myCenter});
marker.setMap(map);
}
</script>
<a href="#myPage" title="To top"><button type="button" class="btn btn-default btn-circle btn-lg"><i class="glyphicon glyphicon-chevron-up"></i></button></a>
<footer class="text-center">
<div id="social" class="icon" style="text-align: center;">
<ul>
<a href="https://www.facebook.com/TMRTKJSCE/" target="_blank" class="icon"><i class="fa fa-facebook-square"></i></a>
<a href="https://twitter.com/TMRTKJSCE/" target="_blank" class="icon"><i class="fa fa-twitter-square"></i></a>
<a href="https://www.linkedin.com/company/13397994/" target="_blank" class="icon"><i class="fa fa-linkedin-square"></i></a>
</ul>
</div>
<br>Made by TMRT Web Team
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/baguettebox.js/1.8.1/baguetteBox.min.js"></script>
<script>
baguetteBox.run('.gal');
</script>
<script>
//Closing the collapse on navbar onclick
$('.navbar-collapse a').click(function(){
$(".navbar-collapse").collapse('hide');
});
$(document).ready(function(){
// Add smooth scrolling to all links in navbar + footer link
$(".navbar a, a[href='#myPage'], a[href='#about'], a[href='#contact'], a[href='#gallery'] ").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (900) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 900, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("myBtn").style.display = "block";
} else {
document.getElementById("myBtn").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
$(window).scroll(function() {
$(".slideanim").each(function(){
var pos = $(this).offset().top;
var winTop = $(window).scrollTop();
if (pos < winTop + 600) {
$(this).addClass("slide");
}
});
});
})
</script>
</body>
</html>