-
Notifications
You must be signed in to change notification settings - Fork 16
/
crowd.html
405 lines (332 loc) · 12.6 KB
/
crowd.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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<link rel="shortcut icon" href="img/logo.jpg" type="image/png" />
<title>Crowd Funding SAUVC'2022</title>
<!-- Google font -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7CVarela+Round" rel="stylesheet">
<!-- Bootstrap -->
<link type="text/css" rel="stylesheet" href="css/bootstrap.min.css" />
<!-- Owl Carousel -->
<link type="text/css" rel="stylesheet" href="css/owl.carousel.css" />
<link type="text/css" rel="stylesheet" href="css/owl.theme.default.css" />
<!-- Magnific Popup -->
<link type="text/css" rel="stylesheet" href="css/magnific-popup.css" />
<!-- Font Awesome Icon -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Custom stlylesheet -->
<link type="text/css" rel="stylesheet" href="css/style.css" />
<style>
.our-team {
text-align: center;
margin-bottom: 120px;
z-index: 1;
position: relative;
}
.our-team .pic {
/* border-radius: 50%; */
margin-top: 10px;
overflow: hidden;
position: relative;
}
.our-team .pic:after {
content: "";
width: 100%;
height: 100%;
/* border-radius: 50%; */
background: rgba(0, 0, 0, 0.7);
opacity: 0;
position: absolute;
top: 0;
left: 0;
transition: all 0.5s ease 0s;
}
.our-team:hover .pic:after {
opacity: 1;
}
.our-team .pic img {
width: 100%;
/* height: fit-content; */
height: 100%;
/*width:250px;
height:250px;*/
}
.our-team .pic .cover-img {
background-position: center;
height: 45vh;
background-repeat: no-repeat;
background-size: cover;
}
@media screen and (max-width: 767px) {
.our-team .pic .cover-img {
background-size: contain;
height: 60vh;
}
}
.our-team .social {
width: 100%;
padding: 0;
margin: 0;
list-style: none;
opacity: 0;
position: absolute;
top: 45%;
left: 0;
z-index: 1;
transition: all 0.5s ease 0s;
}
.our-team:hover .social {
opacity: 1;
}
.our-team .social li {
display: inline-block;
}
.our-team .social li a {
display: block;
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 50%;
border: 1px solid #fff;
font-size: 15px;
color: #fff;
margin-right: 10px;
transition: all 0.5s ease 0s;
}
.our-team .social li a:hover {
background: #fff;
color: #000;
}
.our-team .team-content {
width: 100%;
height: 100%;
/* border-radius: 50%; */
/* border: 2px dotted #ddd; */
position: absolute;
bottom: -100px;
left: 0;
z-index: -1;
/* transition: all 0.5s ease 0s; */
}
.our-team:hover .team-content {
border: 2px dotted #00adae;
}
.our-team .team-info {
width: 100%;
color: #464646;
position: absolute;
bottom: 12px;
left: 0;
}
.our-team .title {
font-size: 20px;
font-weight: 600;
color: #464646;
margin: 0 0 5px 0;
transition: all 0.5s ease 0s;
}
.our-team:hover .title {
color: #00adae;
}
.our-team .post {
display: block;
font-size: 14px;
color: #464646;
}
</style>
</head>
<body>
<!--Redirect news-->
<a href="#" id="demo" style="display: none"></a>
<!--/Redirect news-->
<!-- Header -->
<header>
<!-- Nav -->
<nav id="nav" class="navbar head">
<div class="container">
<div class="navbar-header">
<!-- Logo -->
<div class="navbar-brand">
<a href="index.html">
<img class="logo" src="img/auv1.png" alt="logo" id="rotate_image">
</a>
</div>
<!-- /Logo -->
<!-- Collapse nav button -->
<div class="nav-collapse">
<span></span>
</div>
<!-- /Collapse nav button -->
</div>
<!-- Main navigation -->
<div class="nav-head">
<ul class="main-nav nav navbar-nav navbar-right">
<li><a href="./index.html#home">Home</a></li>
<li><a href="./index.html#about">About</a></li>
<li><a href="./coreTeam.html">Core Team</a></li>
<li><a href="./crowd.html">Crowd Funding SAUVC'2022</a></li>
<li><a href="./mate_rov.html">MTS AUV-ZHCET</a></li>
<li><a href="./index.html#vehicles">Vehicles</a></li>
<li><a href="./index.html#service">Achievements</a></li>
<li><a href="./index.html#features">Sponsors</a></li>
<li><a href="./index.html#mentors">Mentors</a></li>
<!-- <li><a href="./posts.html">Recruitments</a></li> -->
<li><a href="./blog-single.html">Blog</a></li>
<li><a href="./index.html#contact">Contact</a></li>
</ul>
</div>
<!-- /Main navigation -->
</div>
</nav>
<!-- /Nav -->
</header>
<!-- /Header -->
<div class="container">
<div class="section-header text-center">
<div class="title">
<h1 class="home-title"><span>Crowd Funding SAUVC'2022</span></h1>
</div>
</div>
<!-- for vedio -->
<div>
<div class="row py-lg-5 py-5 text-center container">
<div class="col-lg-6 col-md-8 mx-auto">
<div class="container my-5">
<iframe class="embed-responsive-item" src="img\vedio\THE FINAL OF THE FINAL.mp4"></iframe>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<p class="about-des">We are MTS AUV-ZHCET, a student club specializing in underwater robotics. We make autonomous underwater vehicles from scratch going through various thought-out stages including designing and fabrication. We have participated in national and international competitions such as SAVe 2019, SAUVC 2018, ROVc, AMUROVc 2022, etc. <br><br>
These are some of our achievements:<br>
<ol type="1">
<li>1. 1st Position in AMUROVc 2022 a national-level competition held at Aligarh Muslim University<br> <a href="https://www.linkedin.com/posts/saleemanwarkhan_mts-mtsauvzhcet-amurovc-activity-6871470435066761216-doV6/">https://www.linkedin.com/posts/saleemanwarkhan_mts-mtsauvzhcet-amurovc-activity-6871470435066761216-doV6/</a></li>
<li>2. ‘Most liked vehicle’ award in Singapore AUV Challenge 2018</li>
<li>3. Paper titled “Hybrid Autonomous Vehicle System for Flood Relief Operations” selected in AUV 2022 Singapore Technical Program.</li>
<li>4. A total of 4 patents have been published so far.</li>
<li>5. 4th position in SAVe19 IIT-M Chennai</li>
<li>6. Selected among the 10 best innovation clubs in India at FINE 2018 organized in Rashtrapati Bhavan.</li>
<li>7. Top 3 at Idea presentation in Riyadh entrepreneurship summit 2018.</li>
</ol>
<br>
We are participating in SAUVC for the second time, an international-level underwater robotics(AUV) challenge held in Singapore each year. We are proud to announce that after clearing the first round, we have been selected for further rounds of SAUVC which will be held in Singapore from 21st to 26th September 2022. We were the top 30% performers in the first round, competing with more than 120 teams internationally.<br><br>
We have already been very innovative with our expenditures that go into the making of our AUV (Vehicle which will be competing) and a non-negotiable budget of 5 lacs has been finalized. We cannot, any further, compromise on the component quality involved in fabrication, designing, and building our AUV not to mention the travel and accommodation expenses for 11 people.<br>
For this, we need your contributions to help us achieve our goals while representing our fraternity, Aligarh Muslim University on a global scale once again. Please contribute as much as you can to the following Milaap link, even a small amount and help from your side can mean a lot to us.<br><br>
Contribute to our Milaap Link: <a href="https://milaap.org/fundraisers/support-for-the-students/deeplink?deeplink_type=paytm">https://milaap.org/fundraisers/support-for-the-students/deeplink?deeplink_type=paytm</a><br>
For an alternate payment method, we have our official bank account identified by the university (AMU)<br><br>
Account No. 5247101005809<br>
IFSC Code. CNRB0005247<br>
MICR Code. 202015013<br>
Account Name. AUV ZHCET CLUB<br>
Canara Bank AMU, Aligarh.<br> <br>
Our deadline for the crowdfunding is 16th September 2022 <br><br>
Regards <br>
MTS AUV-ZCHET<br>
Main Building, ZHCET<br>
Zakir Hussain College of Engineering & Technology, AMU</p><br>
</div>
<div class="col-md-6">
<!-- <div class="col-sm-12"> -->
<div id="my-slider" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#my-slider" data-slide-to="0" class="active"></li>
<li data-target="#my-slider" data-slide-to="1"></li>
<li data-target="#my-slider" data-slide-to="2" class="active"></li>
<li data-target="#my-slider" data-slide-to="3"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img class="slide-image" src="./img/SAUVC 2018.jpeg" alt="image1" />
</div>
<div class="item">
<img class="slide-image" src="./img/Budget SAUVC'22.png" alt="image2" />
</div>
<div class="item">
<img class="slide-image" src="./img/Finalists SAVe 2019.jpg" alt="image1" />
</div>
<div class="item">
<img class="slide-image" src="./img/Riyadhsummit-top3.jpg" alt="image2" />
</div>
</div>
<a class="left carousel-control" href="#my-slider" 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="#my-slider" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
</div>
</div>
</div>
</div>
<br>
<!-- Footer -->
<footer id="footer" class="sm-padding bg-dark">
<!-- Container -->
<div class="container">
<!-- Row -->
<div class="row">
<div class="col-md-12">
<!-- footer logo -->
<div class="footer-logo">
<a href="index.html"><img src="img/auv1.png" alt="logo"></a>
</div>
<!-- /footer logo -->
<div id="footer-name" class="row">
<h2>AUV ZHCET</h2>
<hr>
<h4>Department of Mechanical Engineering, ZHCET</h4>
<h4>Aligarh Muslim University, Aligarh, U.P.</h4>
<h4>India</h4>
</div>
<!-- footer follow -->
<ul class="footer-follow">
<li><a href="https://www.facebook.com/auvzhcetclub/"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/auv_zhcet"><i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.instagram.com/auv_zhcet/"><i class="fa fa-instagram"></i></a></li>
<li><a href="https://www.linkedin.com/company/auv-zhcet/"><i class="fa fa-linkedin"></i></a>
</li>
<li><a href="https://www.youtube.com/channel/UCKnOMeEqaWUOpE7iYwUnzDg"><i
class="fa fa-youtube"></i></a></li>
<li><a href="https://github.com/auvzhcet"><i class="fa fa-github"></i></a></li>
</ul>
<!-- /footer follow -->
</div>
</div>
<!-- /Row -->
<div id="credits" style="margin-bottom: -50px"><a
style="position: absolute; bottom: 0; right: 0; color: #fff; font-family: sans-serif; opacity: 0.4; font-size: 18px; padding: 0px 100px;"
href=""></a></div>
</div>
<!-- /Container -->
</footer>
<!-- /Footer -->
<!-- Back to top -->
<div id="back-to-top"></div>
<!-- /Back to top -->
<!-- Preloader >
<div id="preloader">
<div class="preloader">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
<! /Preloader -->
<!-- jQuery Plugins -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/owl.carousel.min.js"></script>
<script type="text/javascript" src="js/jquery.magnific-popup.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/blog.js"></script>
</body>
</html>