-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
2482 lines (2141 loc) · 108 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
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
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="Vssut Robotics Website ">
<meta name="author" content="Vssut Robotics">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Vssut Robotics | Where Imagination Meets Innovation</title>
<!-- Mobile Specific Meta
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="img/head1.png" />
<!-- CSS
================================================== -->
<!-- Fontawesome Icon font -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- bootstrap.min css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Animate.css -->
<link rel="stylesheet" href="css/animate.css">
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.css">
<!-- Grid Component css -->
<link rel="stylesheet" href="css/component.css">
<!-- Slit Slider css -->
<link rel="stylesheet" href="css/slit-slider.css">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css/main.css">
<!-- Media Queries -->
<link rel="stylesheet" href="css/media-queries.css">
<link href="css/flipping_gallery.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/scrollbar.css">
<!-- custom CSS -->
<link rel="stylesheet" href="css2/custom.css">
<!--
Google Font
=========================== -->
<!-- Oswald / Title Font -->
<link href='https://fonts.googleapis.com/css?family=Oswald:400,300' rel='stylesheet' type='text/css'>
<!-- Ubuntu / Body Font -->
<link href='https://fonts.googleapis.com/css?family=Ubuntu:400,300' rel='stylesheet' type='text/css'>
<link href="https://icons8.com">
<!-- Modernizer Script for old Browsers -->
<script src="js/modernizr-2.6.2.min.js" ></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js" ></script>
<script type="text/javascript" src="js/jquery.flipping_gallery.js" ></script>
<script async>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54152927-1', 'auto');
ga('send', 'pageview');
</script>
<script async>
var jq=$.noConflict();
jq(document).ready( function() {
jq(".gallery").flipping_gallery({
enableScroll: true,
});
jq(".next").click(function() {
jq(".gallery").flipForward();
return false;
});
jq(".prev").click(function() {
jq(".gallery").flipBackward();
return false;
});
});
</script>
</head>
<body id="body">
<!--
Start Preloader
==================================== -->
<div id="loading-mask">
<div class="loading-img">
<img alt="Rings Preloader" src="imgs/Forrest.gif"/>
</div>
</div>
<!--
End Preloader
==================================== -->
<!--
Welcome Slider
==================================== -->
<section id="home">
<div id="slitSlider" class="sl-slider-wrapper">
<div class="sl-slider">
<!-- single slide item -->
<div class="sl-slide" data-orientation="horizontal" data-slice1-rotation="-25" data-slice2-rotation="-25" data-slice1-scale="2" data-slice2-scale="2">
<div class="sl-slide-inner">
<div class="bg-img bg-img-1"></div>
<div class="carousel-caption">
<div>
<img class="wow fadeInUp" src="img/robotics.png" alt="Robotics">
<h2 data-wow-duration="500ms" data-wow-delay="500ms" class="heading animated fadeInRight">Where Imagination Meets Innovation</h2>
<!--<a class="btn btn-green animated fadeInUp" href="#about">Read More</a>-->
</div>
</div>
</div>
</div>
<!-- /single slide item -->
<!-- single slide item -->
<div class="sl-slide" data-orientation="vertical" data-slice1-rotation="10" data-slice2-rotation="-15" data-slice1-scale="1.5" data-slice2-scale="1.5">
<div class="sl-slide-inner">
<div class="bg-img bg-img-2"></div>
<div class="carousel-caption">
<div>
<h2 class="heading animated fadeInDown">AIR<span class="color">-3</span></h2>
<h3 class="animated fadeInUp">MATLAB INNOVATION-ABU ROBOCON <span class="color">2018</span></h3>
<!--<a class="btn btn-green animated fadeInUp" href="#showcase">Lets Explore</a>-->
</div>
</div>
</div>
</div>
<!-- /single slide item -->
<!-- single slide item -->
<div class="sl-slide" data-orientation="horizontal" data-slice1-rotation="3" data-slice2-rotation="3" data-slice1-scale="2" data-slice2-scale="1">
<div class="sl-slide-inner">
<div class="bg-img bg-img-3"></div>
<div class="carousel-caption">
<div>
<h2 class="heading animated fadeInRight"><span class="color">I</span>deate <span class="color">C</span>reate <span class="color">I</span>nnovate</h2>
<h3 class="animated fadeInLeft"></h3>
<!--<a class="btn btn-green animated fadeInUp" href="#services">Lets Explore</a>-->
</div>
</div>
</div>
</div>
<!-- /single slide item -->
</div><!-- /sl-slider -->
<nav id="nav-arrows" class="nav-arrows">
<span class="nav-arrow-prev">Previous</span>
<span class="nav-arrow-next">Next</span>
</nav>
<nav id="nav-dots" class="nav-dots">
<span class="nav-dot-current"></span>
<span></span>
<span></span>
</nav>
<section id="section04" class="demo">
<a href="#navigation"><span></span>Scroll</a>
</section>
</div><!-- /slider-wrapper -->
</section>
<!--/#home section-->
<!--
Fixed Navigation
==================================== -->
<header id="navigation" class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<!-- responsive nav button -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- /responsive nav button -->
<!-- logo -->
<!-- <a class="navbar-brand" href="#body">
<h1 id="logo">
<img src="img/robotics1.png" alt="VssutRobotics" />
</h1>
</a> -->
<!-- /logo -->
<!-- logo -->
<div class="row navbar-brand">
<div class="col-sm-2" style="float: left;margin-top: 5px; margin-right: 5px;" >
<a class="" href="#body" id="scrollUp-logo">
<img src="img/robotics1.png" alt="VssutRobotics" />
</a>
</div>
<div id="" class="col-m-10" style="margin-left:20px;font-size: 20px;text-align: center;">
<a class="logo" href="#body" id="scrollUp-name"> VSSUT Robotics</a>
</div>
</div>
<!-- /logo -->
</div>
<!-- main nav -->
<nav class="collapse navbar-collapse navbar-right" role="Navigation">
<ul id="nav" class="nav navbar-nav">
<li class="current"><a href="#body">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#showcase">Projects</a></li>
<li><a href="#pricing">Achievements</a></li>
<li><a href="#our-team">Team</a></li>
<li><a href="#services">Gallery</a></li>
<!-- <li><a href="#our-alumni">Our Alumni</a></li>-->
<!-- <li><a href="#blog">Blog</a></li>-->
<li><a href="#contact-us">Contact</a></li>
<!-- <li><a href="event.html">Samavesh</a></li>-->
<!-- <li><a href="javascript:void(0);" onclick="document.getElementById('id01').style.display='block'">Register</a></li>-->
</ul>
</nav>
<!-- /main nav -->
</div>
</header>
<!--
End Fixed Navigation
==================================== -->
<!--
Start About Section
==================================== -->
<!-- section title -->
<section id="about" class="bg-one col-lg-12">
<!-- Container -->
<div class="container col-lg-12">
<!-- Our Mission -->
<div class="row col-lg-3">
<!-- section title -->
<div class="title text-center wow fadeIn" data-wow-duration="1500ms">
<h2>Our
<span class="color"> Mission</span>
</h2>
<div class="border"></div>
</div>
<!-- /section title -->
<!-- About item -->
<div class="col-md-12 text-center wow fadeInUp" data-wow-duration="500ms">
<div class="wrap-about">
<!--<div class="icon-box">
<i class="fa fa-lightbulb-o fa-4x"></i>
</div> -->
<!-- Express About Yourself -->
<div class="about-content text-left">
<!--<h3 class="ddd">We're Creative</h3> -->
<p>With the dawn of 21st century and scientific advancements at its peak ,sitting with a book and reading about scientific
endeavours is too mainstream. The time demands more from us and we are up for the challenge . We are enthusiastic
enough to take this opportunity and make a great deal of it. We all succour the ways in which robotics can change
the world. Being the avid tech geeks that we are, we can see the positive economic and cultural potential that the
technology can offer. Our mission is one- to make the best innovation of the ideas one possesses.</p>
</div>
</div>
</div>
</div>
<!--End Our Mission -->
<!-- What We Do -->
<div class="row col-lg-3">
<div class="title text-center wow fadeIn" data-wow-duration="1500ms">
<h2>What We
<span class="color"> Do</span>
</h2>
<div class="border"></div>
</div>
<!-- About item -->
<div class="col-md-12 text-center wow fadeInUp" data-wow-duration="500ms" data-wow-delay="250ms">
<div class="wrap-about">
<!--<div class="icon-box">
<i class="fa fa-users fa-4x"></i>
</div>-->
<!-- Express About Yourself -->
<div class="about-content text-left">
<!--<h3>We're Professional</h3>-->
<p>VSSUT Robotics Society provides students with resources and ample support to develop products which will make people
lives easier. Over the years, it has not failed once to make its presence felt. Be it the outstanding performances
at Robocon or invigorating the primordial ideas of freshers. It fosters and prunes every innovative mind.We love to
play with MECHANICAL designs, dope them with the ELECTRONICS components and feel the Automation come alive with few
lines of CODING. The society offers indispensable guidance, workshops and tutorials along with tools, equipment, components
and workspace to the students of the university.Mentioning of team work! Individual commitment to a group effort-that
is what makes,a team work, a company work, this Robotics society work. This is not merely a club of an institute,
this is what a family looks like in a technical university.</p>
</div>
</div>
</div>
<!-- End About item -->
<!-- About item -->
<!--<div class="col-md-4 text-center wow fadeInUp" data-wow-duration="500ms" data-wow-delay="500ms">
<div class="wrap-about kill-margin-bottom">
<div class="icon-box">
<i class="fa fa-users fa-4x"></i>
</div>
<!-- Express About Yourself -->
<!--<div class="about-content text-center">
<h3>We're Professional</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Velit, nihil, libero, perspiciatis eos provident laborum eum dignissimos</p>
</div>
</div>
</div>-->
<!-- Intro Video -->
<!-- End About item -->
<!-- End row -->
</div>
<!-- End What We Do -->
<!-- Hear Us Loud -->
<div class="row col-lg-6">
<div class="title text-center wow fadeIn" data-wow-duration="1500ms">
<h2>Hear Us
<span class="color"> Loud</span>
</h2>
<div class="border"></div>
</div>
<div class="col-lg-12 wow fadeInRight" data-wow-duration="500ms">
<div class="embed-responsive embed-responsive-16by9 youtube">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/RhroZl45nQo?autoplay=1&mute=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
<!-- Social Buttons -->
<div class="col-lg-12" style="text-align: center">
<a href="https://www.youtube.com/channel/UCfrM26pYkyk8JtW-G0mcDNQ" target="_blank" class="btn btn-danger" role="button" style="margin-left: px">Watch More</a>
<a href="https://www.facebook.com/vssutrobotics/" target="_blank" class="btn btn-danger" role="button" style="margin-left: 15px">Facebook</a>
<a href="https://www.instagram.com/vssut_robotics/" target="_blank" class="btn btn-danger" role="button" style="margin-left: 15px">
Instagram </a>
<a href="https://play.google.com/store/apps/details?id=com.gaurav.robotics_society&hl=en" target="_blank" class="btn btn-danger"
role="button" style="margin-left: 15px">Play Store</a>
</div>
<!-- End Social Buttons -->
</div>
<!-- Hear Us Loud -->
</div>
<!-- End container -->
</section>
<!-- End section -->
<!--
Start Main Features
==================================== -->
<section id="main-features">
<div class="container">
<div class="row">
<div class="title text-center wow fadeIn" data-wow-duration="1500ms" >
<h2>Media<span class="color"> Coverage</span></h2>
<div class="border"></div>
</div>
<!-- features item -->
<div id="features">
<!-- Features item-->
<!-- ------------------------------------------------------------------ -->
<!-- Features item-->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/23.jpg" alt="KANAK NEWS, Odisha." class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/24.jpg" alt="KANAK NEWS, Odisha." class="img-responsive">
</div>
</div>
</div>
<!-- ------------------------------------------------------------------ -->
<!-- ------------------------------------------------------------------ -->
<!-- Features item-->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/22.png" alt="Featured in Odisha's esteemed daily - SAMBAD, Odisha." class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/21.jpg" alt="Featured in Odisha's esteemed daily - The Prameya News, Odisha." class="img-responsive">
</div>
</div>
</div>
<!-- ------------------------------------------------------------------ -->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/D1.jpg" alt="Featured in Odisha's esteemed daily - SAMBAD, Odisha." class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/D2.jpg" alt="Featured in Odisha's esteemed daily - The Prameya News, Odisha." class="img-responsive">
</div>
</div>
</div>
<!-- ------------------------------------------------------------------ -->
<!-- Features item-->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/VV1.jpg" alt="Featured in Odisha's esteemed daily - SAMBAD, Odisha." class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/VV2.jpg" alt="Featured in Odisha's esteemed daily - The Prameya News, Odisha." class="img-responsive">
</div>
</div>
</div>
<!-- ------------------------------------------------------------------ -->
<!-- Features item-->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/E2.png" alt="Featured in Odisha's esteemed daily - SAMBAD, Odisha." class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/E3.png" alt="Featured in Odisha's esteemed daily - The INDIAN EXPRESS, Odisha." class="img-responsive">
</div>
</div>
</div>
<!-- ------------------------------------------------------------------ -->
<!-- Features item-->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/5.jpg" alt="3D Printer Feature in The Indian Express" class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/6.jpg" alt="VSSUT Robotics Society Orientation Program 2017" class="img-responsive">
</div>
</div>
</div>
<!-- features content -->
<!--<div class="col-md-6 feature-desc wow fadeInUp" data-wow-duration="500ms" data-wow-delay="300ms">
<h3>Robotics Society</h3>
<p>Robotics Society is an official society of VSSUT, Burla which owes its initiative to alumni Mr. Biswajit Parida. The society encourages various technical activities and projects in the field of amateur as well as advanced Robotics, in the university.</p>
<p>The members are a bunch of budding technocrats who are driven by an acute zest for learning technological advancements and happenings in the modern world, and endeavor in applying the theoretical learnings into realistic projects.</p>
<a href="https://www.youtube.com/channel/UCfrM26pYkyk8JtW-G0mcDNQ" class="btn btn-transparent">Watch More</a>
<!--<a href="#" class="btn btn-transparent">Our Team</a>-->
<!--</div>
<!-- /features content -->
<!-- ------------------------------------------------------------------ -->
<!-- ------------------------------------------------------------------ -->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/20.jpg" alt="Featured in Odisha's esteemed daily - The Prameya News, Odisha." class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/19.jpg" alt="Featured in Odisha's esteemed daily - The Prameya News, Odisha." class="img-responsive">
</div>
</div>
</div>
<!-- --------------------------------------------------------------------- -->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/7.jpg" alt="India's Cheapest 3D Printer" class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/8.png" alt="3D Printer Bhubaneswar Buzz" class="img-responsive">
</div>
</div>
</div>
<!-- --------------------------------------------------------------------- -->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/9.jpg" alt="Rov featured in odia newspaper!" class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/10.jpg" alt="Rov featured in Prameya newspaper!">
</div>
</div>
</div>
<!-- --------------------------------------------------------------------- -->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/12.jpg" alt="Rov featured in Dharitri newspaper" class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/13.jpg" alt="Rov Drone featured in News7" class="img-responsive">
</div>
</div>
</div>
<!-- --------------------------------------------------------------------- -->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/14.png" alt="Robocon 2017 Featured in Bhubaneswar Buzz!" class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/15.png" alt="Robocon 2017 Air 6 Featured in OTV!" class="img-responsive">
</div>
</div>
</div>
<!-- --------------------------------------------------------------------- -->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/16.jpg" alt="Robocon 2016" class="img-responsive">
</div>
<!-- /features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/17.png" alt="Robocon 2016 OnAIR @DD National" class="img-responsive">
</div>
</div>
</div>
<!-- --------------------------------------------------------------------- --><div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/18.jpg" alt="MathWorks Innovation Award" class="img-responsive">
</div>
<!-- /features media -->
</div>
</div>
<!-- --------------------------------------------------------------------- -->
<div class="item">
<div class="features-item">
<!-- features media -->
<div class="col-md-6 feature-media wow fadeInUp" data-wow-duration="500ms">
<img src="img/blog/4.jpg" alt="Vssut Robotics App" class="img-responsive">
</div>
<!-- /features media -->
<!-- features content -->
<div class="col-md-6 feature-desc wow fadeInUp" data-wow-duration="500ms" data-wow-delay="300ms">
<h3>The Official App Of Vssut Robotics</h3>
<p>In this mobile era, apps are the becoming the means of fastest information source & the most effective among hundreds of websites.A quick look on the outrage of ROBOTICS SOCIETY,an offline platform of all the resources and a handful support from the seniors of the society, all the statistics from tip to toe is in front of your screen in just one click on the App of "VSSUT ROBOTICS".</p>
<p>What we as a student want is the simplicity and focus that apps provide & this is possible with just a click on the app.In a nutshell,without being online or waiting for the details to load we can open the basic page of the app and can get all the information.</p>
<a href="https://play.google.com/store/apps/details?id=com.gaurav.robotics_society&hl=en" target="_blank" class="btn btn-transparent">Download The App</a>
<!--<a href="#" class="btn btn-transparent">Purchase Theme</a>-->
</div>
<!-- /features content -->
</div>
</div>
</div>
<!-- /features item -->
</div> <!-- End row -->
</div> <!-- End container -->
</section> <!-- End section -->
<!--
Sign Up Section
================================================
================================================
-->
<div id= 'id01' class="modal">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal"> ×</span>
<ul class="tab-group">
<li class="tab active"><a href="#signup">Sign Up</a></li>
<li class="tab"><a href="#login">Log In</a></li>
</ul>
<script src="js/signup.js" ></script>
<div class="tab-content">
<div id="signup">
<h1>Sign Up for Free</h1>
<form action="signup.php" method="post">
<div class="top-row">
<div class="field-wrap">
<label>
First Name<span class="req">*</span>
</label>
<input type="text" name="f_name" required autocomplete="off" />
</div>
<div class="field-wrap">
<label>
Last Name<span class="req">*</span>
</label>
<input type="text" name="l_name" required autocomplete="off"/>
</div>
</div>
<div class="field-wrap">
<label>
Alumni/student<span class="req">*</span>
</label>
<input type="text" name="choice" required autocomplete="off"/>
</div>
<div class="field-wrap">
<label>
Email Address<span class="req">*</span>
</label>
<input type="email" name="e_mail" required autocomplete="off"/>
</div>
<div class="field-wrap">
<label>
Set A Password<span class="req">*</span>
</label>
<input type="password" name="pass" required autocomplete="off"/>
</div>
<button type="submit" class="button button-block"/>Get Started</button>
</form>
</div>
<div id="login">
<h1>Welcome Back!</h1>
<form action="login.php" method="post">
<div class="field-wrap">
<label>
Email Address<span class="req">*</span>
</label>
<input type="email" name="email1" required autocomplete="off"/>
</div>
<div class="field-wrap">
<label>
Password<span class="req">*</span>
</label>
<input type="password" name="pass1" required autocomplete="off"/>
</div>
<p class="forgot"><a href="#">Forgot Password?</a></p>
<button class="button button-block"/>Log In</button>
</form>
</div>
</div>
</div>
<!-- /form -->
<!--
Start Counter Section
==================================== -->
<section id="counter" class="parallax-section">
<div class="container">
<div class="row">
<!-- first count item -->
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow fadeInDown" data-wow-duration="500ms">
<div class="counters-item">
<div>
<span data-speed="3000" data-to="45">45</span>
</div>
<i class="fa fa-calendar fa-3x"></i>
<h3>Events Organised</h3>
</div>
</div>
<!-- end first count item -->
<!-- second count item -->
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow fadeInDown" data-wow-duration="500ms" data-wow-delay="200ms">
<div class="counters-item">
<div>
<span data-speed="3000" data-to="63">63</span>
</div>
<i class="fa fa-check-square fa-3x"></i>
<h3>Projects completed</h3>
</div>
</div>
<!-- end second count item -->
<!-- third count item -->
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow fadeInDown" data-wow-duration="500ms" data-wow-delay="400ms">
<div class="counters-item">
<div>
<span data-speed="3000" data-to="35">35</span>
<span></span>
</div>
<i class="fa fa-trophy fa-3x"></i>
<h3>Awards</h3>
</div>
</div>
<!-- end third count item -->
<!-- fourth count item -->
<div class="col-md-3 col-sm-6 col-xs-12 text-center wow fadeInDown" data-wow-duration="500ms" data-wow-delay="600ms">
<div class="counters-item kill-margin-bottom">
<div>
<span data-speed="3000" data-to="4230">4230</span>
</div>
<i class="fa fa-thumbs-up fa-3x"></i>
<h3>Likes</h3>
</div>
</div>
<!-- end fourth count item -->
</div> <!-- end row -->
</div> <!-- end container -->
</section> <!-- end section -->
<!-- Start Portfolio Section
=========================================== -->
<section id="showcase">
<div class="container">
<div class="row wow fadeInDown" data-wow-duration="500ms">
<div class="col-lg-12">
<!-- section title -->
<div class="title text-center">
<h2>Our <span class="color">Projects</span></h2>
<div class="border"></div>
</div>
<!-- /section title -->
<!-- portfolio item filtering -->
<div class="portfolio-filter clearfix">
<ul class="text-center">
<li><a href="javascript:void(0)" class="filter" data-filter="all">All</a></li>
<li><a href="javascript:void(0)" class="filter" data-filter=".app">Manual</a></li>
<li><a href="javascript:void(0)" class="filter" data-filter=".web">Aerial</a></li>
<li><a href="javascript:void(0)" class="filter" data-filter=".photoshop">Image Processing</a></li>
<li><a href="javascript:void(0)" class="filter" data-filter=".illustrator">Automatic</a></li>
<li><a href="soh.html" class="filter" data-filter=".iot">IOT</a></li>
</ul>
</div>
<!-- /portfolio item filtering -->
</div> <!-- /end col-lg-12 -->
</div> <!-- end row -->
</div> <!-- end container -->
<!-- portfolio items -->
<div class="portfolio-item-wrapper wow fadeInUp" data-wow-duration="500ms">
<ul id="og-grid" class="og-grid">
<!-- single portfolio item -->
<li class="mix illustrator">
<a data-largesrc="img/portfolio/3Dprinter.jpg" data-title="3D PRINTER" data-description="3D printing, also known as additive manufacturing (AM), refers to processes used to create a three-dimensional object in which layers of material are formed under computer control to create an object.Objects can be of almost any shape or geometry and are produced using digital model data from a 3D model or another electronic data source such as an Additive Manufacturing File (AMF) file. Thus, unlike material removed from a stock in the conventional machining process, 3D printing or AM builds a three-dimensional object from computer-aided design (CAD) model or AMF file by successively adding material layer by layer.
">
<img src="img/portfolio/3Dprinter.jpg" alt="3D PRINTER">
<div class="hover-mask">
<h3>3D PRINTER</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<!-- single portfolio item -->
<li class="mix illustrator">
<a data-largesrc="img/portfolio/ROV1.png" data-title="ROUV" data-description="Remote Operated Underwater Vehicle(ROUV) is a tethered
underwater mobile device.It can reach a depth of 10 meters and has a runtime of 25 mins.It has auto-surfacing capability in case there is loss of connectivity.It can hold position against 12m/s turbulent flow,and has short range 3D environment mapping feature.It can also be used to detect cracks in the gates of dams.
">
<img src="img/portfolio/ROV1.png" alt="ROUV">
<div class="hover-mask">
<h3>ROUV</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<li class="mix web">
<a href="javascript:void(0)" data-largesrc="img/portfolio/uav.png" data-title="UAV" data-description="An Unmanned Aerial Vehicle(UAV) commonly known as drone with Six propellers.Our main mission is to facilitate disaster management.It can take a payload of 2Kgs for medical and relief supplies.It has the following features i.e. GPS stabilization,Altitude and GPS hold,Real time mission planning and waypointy navigation,flight time of minimum 30 minutes,Telemetry.It has aerodynamically stabled structure,flight controller and parameters coded and designed by us.Currently working on surveillance and obstacle avoiding. ">
<img src="img/portfolio/uav.png" alt="UAV">
<div class="hover-mask">
<h3>UAV</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<!-- single portfolio item -->
<li class="mix illustrator">
<a href="javascript:void(0)" data-largesrc="img/portfolio/Robocon2017.jpg" data-title="DISC THROWING BOT" data-description="The theme was set by the host country Japan and its Nationals were held at MIT, Pune. The Competition demanded making of a robot which can fix a target location set at a particular distance with varying heights. The target had a circular ball placed at it. The bot was required to locate the target and throw a disc with proper calculated velocity and angle. The disc was supposed to hit the circular ball, topple it down and hence land itself in the target position.
All this work ,needs to be complete within 3 minutes and the team landing maximum number of disc is declared as winner.">
<img src="img/portfolio/Robocon2017.jpg" alt="DISC THROWING BOT">
<div class="hover-mask">
<h3>DISC THROWING BOT</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<!-- single portfolio item -->
<li class="mix illustrator">
<a href="javascript:void(0)" data-largesrc="img/portfolio/Poleclimbing.jpg" data-title="HYBRID POLE CLIMBING BOT" data-description="Built according to the theme of Robocon 2016, this bot partner with the eco bot. This bot works its way against gravity by itself with help of the science involving pneumatics to climb the pole or any object with plane surface standing perfectly vertical to the ground. It has various industrial applications, one of them involving the repairing fans of windmills, etc.">
<img src="img/portfolio/Poleclimbing.jpg" alt="HYBRID POLE CLIMBING BOT">
<div class="hover-mask">
<h3>HYBRID POLE CLIMBING BOT</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<!-- single portfolio item -->
<li class="mix illustrator">
<a href="javascript:void(0)" data-largesrc="img/portfolio/ROBOMINTON.jpg" data-title="ROBOMINTON" data-description="This bot was built as per the theme of Robocon 2015. The bot was built on the foundation of pneumatics that allows the bot to glide/move in the arena and coded so clearly such that it can be controlled or guided to play the game of badminton all by itself. This bot brought many laurels and achievements">
<img src="img/portfolio/ROBOMINTON.jpg" alt="ROBOMINTON">
<div class="hover-mask">
<h3>ROBOMINTON</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<!-- single portfolio item -->
<li class="mix app">
<a href="javascript:void(0)" data-largesrc="img/portfolio/HOVERPOD.jpg" data-title="HOVERPOD" data-description="Hoverpod is a bot which could float and move in response to mental commands.Hoverpod are capable of autonomous operation, they are quiet,safe,durable,
easy to operate,maintain and transport.You flow in a boat,ride in a truck, but fly in a Hoverpod.">
<img src="img/portfolio/HOVERPOD.jpg" alt="HOVERPOD">
<div class="hover-mask">
<h3>HOVERPOD</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<li class="mix illustrator">
<a href="javascript:void(0)" data-largesrc="img/portfolio/solar.png" data-title="SOLAR TRACKER" data-description="A solar tracker is a device that orients a payload towards the sun,Payload can be oriented in 2 axis.Payloads are usually solar panels,parabolic troughs,fresnel reflectors ,lenses or the mirrors of thea heliostat.">
<img src="img/portfolio/solar.png" alt="SOLAR TRACKER">
<div class="hover-mask">
<h3>SOLAR TRACKER</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<!-- single portfolio item -->
<li class="mix app">
<a href="javascript:void(0)" data-largesrc="img/portfolio/Hybridcharger.jpg" data-title="HYBRID CHARGER" data-description="A mobile charger that charges your device through four energy sources namely, solar energy, wind energy, mechanical energy and electrical energy( conventional ac source). Mechanically, a hand crank is present, which when rotated at continuous speed, charges the mobile.
The advantage of this device is that it does not depend upon only one energy source and employs other renewable sources of energy as well. Incorporating thermal energy and sound energy in this project is under research and development.">
<img src="img/portfolio/Hybridcharger.jpg" alt="HYBRID CHARGER">
<div class="hover-mask">
<h3>HYBRID CHARGER</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<!-- single portfolio item -->
<li class="mix web">
<a href="javascript:void(0)" data-largesrc="img/portfolio/Quadcopter.jpg" data-title="DRONE" data-description="Robotics Society has marvelled in the field of aerial robotics.This aerial vehicle has the ability to take aerial still photography,automatic safe-landing,constant altitude maintenance,GPS functionality,programmable automatic parcel delivery system and can be used for aerial survey.">
<img src="img/portfolio/Quadcopter.jpg" alt="QUADCOPTER">
<div class="hover-mask">
<h3>DRONE</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<!-- single portfolio item -->
<!-- single portfolio item -->
<li class="mix web">
<a href="javascript:void(0)" data-largesrc="img/portfolio/tricopter.jpg" data-title="TRICOPTER" data-description="A fully customisable drone with three propeller which has the ability to perform aerial stunts comaparable to human acrobats due to its high degree of freedom.It is cost-effective too.">
<img src="img/portfolio/tricopter.jpg" alt="TRICOPTER">
<div class="hover-mask">
<h3>TRICOPTER</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<!-- single portfolio item -->
<li class="mix illustrator">
<a href="javascript:void(0)" data-largesrc="img/portfolio/lifi.jpg" data-title="LI-FI" data-description="Li-Fi is a local area networking system technology, which allows everyone to connect to each other and to the internet.Li-Fi stands for Light Fidelity.It is a bidirectional, high-speed and fully networked wireless communication network technology as similar to Wi-Fi. It is also a wireless networking system but it makes use of UV/Visible/InfraRed light, which have a greater frequency spectrum and also transmit visible light waves , which can easily understand by a light sensor and transmit data in a digital pattern. So basically Wi-Fi & Li-Fi ,both are used for local area networking in a wireless manner, where Wi-Fi is great for general wireless coverage and Li-Fi is ideal for high density coverage in a confined region.">
<img src="img/portfolio/lifi.jpg" alt="LI-FI">
<div class="hover-mask">
<h3>LI-FI</h3>
<span>
<i class="fa fa-plus fa-2x"></i>
</span>
</div>
</a>
</li>
<!-- /single portfolio item -->
<!-- single portfolio item -->
<li class="mix illustrator">
<a href="javascript:void(0)" data-largesrc="img/portfolio/Firesensingbot.jpg" data-title="AUTOMATIC FIRE SENSING BOT" data-description="An automatic fire sensing and control bot senses fire using three fire sensing modules to detect it and then follows to its source. When the fire is at distance of 20 cms, using an ultrasonic sensor, it orients itself and extinguishes the fire through the exhaust fan fitted to the main body.