forked from Kanishka5/Aarohan_2017
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1445 lines (1244 loc) · 50.7 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>
<html>
<head>
<meta charset="utf-8">
<title>Aarohan 2017 | The Annual Techno-Management Fest</title>
<!-- Behavioral Meta Data -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Core Meta Data -->
<meta name="author" content="CCA 2017">
<meta name="description" content="The Annual Techno-Management Fest Of NIT Durgapur">
<meta name="keywords" content="Aarohan, NIT Durgapur, Fest, CCA">
<!-- Styles -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" >
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> -->
<link rel="stylesheet" type="text/css" href="css/styles.css"/>
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css"/>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<link rel="stylesheet" type="text/css" href="css/team.css">
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon">
<!-- Apple Startup Images -->
<link rel="apple-touch-startup-image" href="apple-touch-startup-image-320x460.png" media="(device-width: 320px)">
<link rel="apple-touch-startup-image" href="apple-touch-startup-image-640x920.png" media="(device-width: 320px) and (-webkit-device-pixel-ratio: 2)">
<link rel="apple-touch-startup-image" href="apple-touch-startup-image-768x1004.png" media="(device-width: 768px) and (orientation: portrait)">
<link rel="apple-touch-startup-image" href="apple-touch-startup-image-748x1024.png" media="(device-width: 768px) and (orientation: landscape)">
<link rel="apple-touch-startup-image" href="apple-touch-startup-image-1536x2008.png" media="(device-width: 1536px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)">
<link rel="apple-touch-startup-image" href="apple-touch-startup-image-2048x1496.png" media="(device-width: 1536px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)">
<!-- Google Analytics -->
<script>
(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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-87353317-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<!--<div id="warning">
<div id="prompt" class="wrapper prompt hide accelerate">
<div class="cell accelerate">
<div class="panel center unselectable accelerate holder">
<div class="tilt-scene">
<img id="war-img" class="tilt" src="images/tilt.png">
</div>
<h2 style="color:white">For Best Experience</h2>
<p style="color:white">Open in Google Chrome</p>
</div>
</div>
</div>
</div>-->
<div class="page-loader">
<b></b>
</div>
<div id="back-main">
<canvas id="testCanvas"></canvas>
</div>
<!-- landing page -->
<section id="land-page">
<div id="container" class="wrapper">
<ul id="scene" class="scene unselectable"
data-friction-x="0.1"
data-friction-y="0.1"
data-scalar-x="25"
data-scalar-y="15">
<li class="layer" data-depth="0.00"></li>
<li class="layer" data-depth="0.10"><div class="background"></div></li>
</ul>
</div>
</section>
<!-- About us -->
<section id="continue">
<div id="space">
</div>
<!-- <div id="scroll-button">
<button id="toggle" >
<span id="scroll">SCROLL</span>
</button>
</div> -->
<img src="images/title5.png" id="title-img" />
<!-- <a href="https://internshala.com"><img src="images/intern.png" id="intern-img" /></a> -->
<header class="navbar navbar-inverse navbar-fixed-top" id="menu-section">
<div class="container">
<nav>
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--<a><img src="images/title-menubar.png" style="width:160px; height:30px;"></img></a>-->
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#land-page" >HOME</a></li>
<li><a href="#trigger-about">ABOUT</a></li>
<li><a href="#bike-entry">EVENTS</a></li>
<li><a href="#car-entry">MAJOR ATTRACTIONS</a></li>
<li><a href="#w-logo">WORKSHOPS</a></li>
<li><a href="#s-logo">SPONSORS</a></li>
<li><a href="#team-full">TEAM</a></li>
<li><a href="#cont-2">HOSPITALITY</a></li>
<li><a href="inspiratie.html">INSPIRATIE</a></li>
<li><a href="registration.php">REGISTER</a></li>
</ul>
</div>
</nav>
</div>
</header>
<div id="scroll-button">
<div id="trigger-img"></div>
<div id="imagesequence">
<img id="car-img" src="images/cargif.gif">
<img id="bike-img" src="images/bike.png">
<img id="scroll" src="images/scroll.png">
<img id="img-walk" src="images/Walking/8.png">
<img id="myimg" src="images/Transformation/introSpritesheet_01.png">
</div>
</div>
<div id="transition-color">
<div id="trigger-about"></div>
<div id="trigger1">
<div id="heading" class="holder">
<!-- <img src="images/about.jpg" /> -->
<iframe src="https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2Farhn.nitd%2Fvideos%2F1231128116943955%2F&show_text=0&width=560" width="500vw" height="315vh" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true" allowFullScreen="true"></iframe>
</div>
</div>
<div id="trigger2">
<div id="content" class="holder">
<h1>About Us</h1>
<br />
<p>National Institute of Technology, Durgapur has been a pioneering educational institute for above 50 years. It boasts of students who have achieved par excellence in the field of academics and organization.
Aarohan is the Annual Techno-management fest of NIT Durgapur, the 2nd Largest of its kind in the whole of eastern India. It is organised by a group of young enthusiasts under the supervision of highly responsible faculties. This festival has been constantly fostering the enthusiastic students to showcase their talents and uplifting their spirits by taking parts in various events, and imbibing in them a sense of belonging to the competitive world that lies ahead, which we shall be continuing for years to come.
Aarohan is not only a celebration of the spirit of engineering but also an opportunity for students to explore their creative limits, experiment, make mistakes and have fun while continuously re-inventing themselves over the course of the fest. Aarohan has been leading the light of instilling a culture of science, technology and innovation among the youth of the nation. With more than 40 events covering all genres of technology and management, Aarohan brings some of the best solutions for the mankind to the fore.</p>
</div>
</div>
<!-- to be added -->
<div id="l-trigger" >
<div id="logo-a">
<img id="logo-img" src="images/banner.png">
</div>
<div id="social-icons" class="container-fixed">
<div class="row">
<div class="social-holder">
<a href="https://www.facebook.com/arhn.nitd" target="_blank"><i class="fa fa-facebook"></i></a>
</div>
<div class="social-holder">
<a href="https://www.twitter.com/arhn_nitd" target="_blank"><i class="fa fa-twitter"></i></a>
</div>
<div class="social-holder">
<a href="https://www.youtube.com/user/arhnNITD" target="_blank"><i class="fa fa-youtube"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="next">
<div id="garage">
<img src="images/garage1.png" />
</div>
</div>
<div id="bike-entry">
<div id="wrapper-cloud" class="cloud">
<img id="cloud-img" src="images/cloud.png">
</div>
<div id="wrapper-cloud2">
<img id="cloud-img2" src="images/cloud.png">
</div>
<div id="events-logo">
<img src="images/Events.png">
</div>
<!-- To be added
1. Blame the builder
-->
<div id="events-left" class="container">
<h2>Techelon</h2>
<p>Conceive | Create | Conquer</p>
<br />
<br />
<div class="row">
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal2 -->
<a href="invictus.html"><img id="home-img-l2" src="images/Events/INVICTUS.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal3 -->
<a href="assembler.html"><img id="home-img-l3" src="images/Events/ASSEMBLER.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal3 -->
<a href="contraptions.html"><img id="home-img-l3" src="images/Events/CONTRAPTIONS.png" /></a>
</div>
</div>
<br />
<br />
<br />
<br />
<h2>Strategist</h2>
<p>Manoeuvre Every Move</p>
<br />
<br />
<div class="row">
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal16 -->
<a href="journo-detective.html"><img id="home-img-l4" src="images/Events/JOURNO-DETECTIVE.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal6 -->
<a href="game-of-recruitment.html"><img id="home-img-r3" src="images/Events/GAME OF RECRUITMENT.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal23 -->
<a href="stockhastic.html"><img id="home-img-l6" src="images/Events/STOCKHASTIC.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal23 -->
<a href="Be-a-Billionare.html"><img id="home-img-l6" src="images/Events/Be-a-Billionaire.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal16 -->
<a href="tcdc.html"><img id="home-img-l4" src="images/Events/TCDC.png" /></a>
</div>
</div>
<br />
<br />
<br />
<br />
<h2>Console</h2>
<p>Aim | Shoot | Score</p>
<br />
<br />
<div class="row">
<div class="col-md-6 col-xs-12 last-h" data-toggle="modal" data-target="#"> <!-- myModal12 -->
<a href="fifa.html"><img id="home-img-r6" src="images/Events/FIFA.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal8 -->
<a href="counter-strike.html"><img id="home-img-r7" src="images/Events/COUNTER STRIKE.png" /></a>
</div>
</div>
<br />
<br />
<br />
<br />
<h2>Exquizzit</h2>
<p>Invigorate Those Gray Cells</p>
<br />
<br />
<div class="row">
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal11 -->
<a href="Exquizzit.html"><img id="home-img-l7" src="images/Events/EXQUIZZIT.png" /></a>
</div>
</div>
</div>
<div id="events-right" class="container" >
<h2>Eureka </h2>
<p>Dream | Dare| Define</p>
<br />
<br />
<div class="row">
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#">
<a href="Behind-the-Dots.html"><img id="home-img-r1" src="images/Events/BEHIND THE DOTS.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#">
<a href="Bplan.html"><img id="home-img-r2" src="images/Events/B-PLAN.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#">
<a href="Bidwiser.html"><img id="home-img-r3" src="images/Events/Bidweiser.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#">
<a href="selldom.html"><img id="home-img-r9" src="images/Events/SellDom.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal20 -->
<a href="colossus.html"><img id="home-img-l5" src="images/Events/COLOSSUS.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal20 -->
<a href="nitcasestudy.html"><img id="home-img-l5" src="images/Events/nitcasestudy.png" /></a>
</div>
</div>
<br />
<br />
<br />
<br />
<h2>Battle of bytes</h2>
<p>The Online Mania</p>
<br />
<br />
<div class="row">
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal18 -->
<a href="khula-maidan.html"><img id="home-img-r9" src="images/Events/KHULA MAIDAN.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal18 -->
<a href="Inquest.html"><img id="home-img-r9" src="images/Events/Inquest.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal18 -->
<a href="decathlon.html"><img id="home-img-r9" src="images/Events/DECATHLON.png" /></a>
</div>
</div>
<br />
<br />
<br />
<br />
<h2>Armageddon</h2>
<p>The Robotics Championship</p>
<br />
<br />
<div class="row">
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal22 -->
<a href="robowars.html"><img id="home-img-l9" src="images/Events/ROBOWAR.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal22 -->
<a href="insideout.html"><img id="home-img-l9" src="images/Events/InsideOut.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal22 -->
<a href="Detour.html"><img id="home-img-l9" src="images/Events/Detour.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal18 -->
<a href="shuttle.html"><img id="home-img-r9" src="images/Events/Shuttle.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#">
<a href="jigsaw.html"><img id="home-img-r9" src="images/Events/jigsaw.png" /></a>
</div>
</div>
<br />
<br />
<br />
<br />
<h2>Apostrophe</h2>
<p>Think, Before You Ink</p>
<br />
<br />
<div class="row">
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal1 -->
<a href="abhivyakti.html"><img id="home-img-l1" src="images/Events/ABHIVYAKTI.png" /></a>
</div>
<div class="col-md-6 col-xs-12" data-toggle="modal" data-target="#"> <!-- myModal6 -->
<a href="Conjecture.html"><img id="home-img-r3" src="images/Events/Conjecture.png" /></a>
</div>
</div>
<br />
<br />
</div>
<div id="space">
</div>
<div id="road">
</div>
<div id="garage2">
<img src="images/garage2.png" />
</div>
</div>
<div id="car-entry">
<div id="road">
</div>
<div id="ma-logo">
<img src="images/ma.png">
</div>
<div id="wrapper-cloud7" >
<img src="images/cloud.png">
</div>
<div id="wrapper-cloud8" >
<img src="images/cloud.png">
</div>
<div id="wrapper-cloud9" >
<img src="images/cloud.png">
</div>
<div id="m1-trigger"></div>
<div id="m-1" >
<div id="m-1-left" class="holder">
<h2>A Confluence of Ideas</h2>
<h1>INSPIRATIE 2017</h1>
<p>Come, dive into the elusive world of these creative geniuses in their own right, and get lost in a world where the possibilities are endless - where the sight of a pin could become the vision of tomorrow’s wonder gadget! Experience their joys of discovery as they narrate their stories of hardships and vibrant encounters to you. And who knows- maybe what inspired them could also spark the fire in you too! So this Aarohan, let’s inspire and get inspired.</p>
<a href="inspiratie.html" class="btn btn-primary uppercase">Know More</a>
</div>
<div id="m-1-right" class="shadow">
<img src="images/Sample/02.jpg" />
</div>
</div>
<div id="m2-trigger"></div>
<div id="m-2" >
<div id="m-2-left">
<img src="images/Sample/01.jpg" class="shadow" />
</div>
<div id="m-2-right" class="holder">
<h2>Eye poping, Jaw dropping</h2>
<h1>LASER SHOW</h1>
<p>Just when you thought Aarohan had offered the best of technology during the day, we bring to you the performances that shall spin your heads into a dilemma. Megashows brings you entertainment sector from around the globe. After the day filled with tech-packed events, hundreds of people await when the spotlight shifts to the magnificent Open Arena which hosts some of the most captivating acts, enthralling one & all beyond expectations.</p>
</div>
</div>
<div id="m3-trigger"></div>
<div id="m-3" >
<div id="m-3-left" class="holder">
<h2>Unleash the madness within</h2>
<h1>AAROHAN NITES</h1>
<p>When the brain gets saturated & the mind starts wandering; when the heat of the day finally dims and the lights get low, the time to rejuvenate and fuel some fresh energy follows. So you thought that we were just a bunch of nerds knowing nothing beyond Newton? Well think again! After the non-stop tech-vaganza, Aarohan Nites turn up the volume and pump up the jam, and turn the entire arena in to a giant dance floor. In the moonlight, by midnight start, enjoy the uproar under the cool February breeze and keep the spirits going.</p>
</div>
<div id="m-3-right">
<img src="images/Sample/04.jpg" class="shadow"/>
</div>
</div>
<div id="m4-trigger"></div>
<!-- <div id="m-4" >
<div id="m-4-left" >
<img src="images/Sample/03.jpg" class="shadow"/>
</div>
<div id="m-4-right" class="holder" >
<h2>Stand Up Comedy Nights With</h2>
<h1>TVF</h1>
<p>The group that needs no introduction which has changed millions of lives by encouraging people to pursue that one big idea. Odds are that this phase might have come after you've been a casualty of the Viral Fever. They are the only group to have made it to the top 250 TV series/shows of all times on IMDb with their online series Pitchers and have given the dialogue 'Tu beer hai', a cult status. And we are proud to have hosted them in our college's last AAROHAN.</p>
</div>
</div> -->
<div id="space">
</div>
</div>
<!-- to be added -->
<div id="train-entry">
<div id="train">
<img src="images/Train.png">
</div>
<!-- <div id="p-track">
<img src="images/plaintrack.png">
</div> -->
<div id="r-track">
<img src="images/plaintrack.png">
</div>
<div id="wrapper-cloud3" >
<img src="images/cloud.png">
</div>
<div id="wrapper-cloud4" >
<img src="images/cloud.png">
</div>
<div id="wrapper-cloud5" >
<img src="images/cloud.png">
</div>
<div id="mountains">
<div id="wave1">
<img src="images/cloud1.png">
<img class="w-2" src="images/cloud2.png">
<img class="w-3" src="images/cloud3.png">
</div>
<div id="wave2">
<img src="images/cloud1.png">
<img class="w-2" src="images/cloud2.png">
<img class="w-3" src="images/cloud3.png">
</div>
<!-- <div id="wave3">
<img src="images/cloud3.png">
</div> -->
<div id="m-right">
<img src="images/m-right.png">
</div>
<div id="m-left">
<img src="images/m-left.png">
</div>
<div id="m-center">
<img src="images/mountain.png">
</div>
</div>
<div id="t-trig">
</div>
<div id="w-logo">
<img src="images/w.png">
</div>
<div id="ws1-trigger"></div>
<div id="ws-1">
<div id="ws1-left" class="holder">
<h2>REMOTE SENSING AND AUTOMATION<br>(Using IoT and RPi)</h2>
<p>In todays connected world, distance has turned out to be just a number. The internet enables us to control our equipment and access sensor data from any corner of the Globe. Be it our house electricals, or even sophisticated robotics equipments. We from Robocell, CCA, NIT Durgapur, <b>in association with Skubotics</b> brings to you a workshop that will teach you exactly the same, from scratch.All necessary equipments will be provided in the kit. So gear up to enter the world of Remote Sensing and Automation using IoT, and Raspberry Pi.<b>For more details contact Deepak - 8981434505</b> <br><b>PRICE - Rs. 2800(per team of max. 4)</b><br><b>Dates: 4th and 5th, February</b></p>
<a href="pdf/remote.pdf" target="_blank" class="btn btn-primary uppercase">Know More</a>
<a href="w4_registration.php" class="btn btn-primary uppercase">Register</a>
</div>
<div id="ws1-right">
<img src="images/automation.jpg" class="shadow">
</div>
</div>
<div id="ws2-trigger"></div>
<div id="ws-2">
<div id="ws2-left">
<img src="images/cloud-comp.jpg" class="shadow">
</div>
<div id="ws2-right" class="holder">
<h2>CLOUD COMPUTING</h2>
<p>This worskshop will be providing practical knowledge and awareness of cloud computing and cloud security to all the participants of the workshop so that students could be able to explore the role of Cloud computing and security at Industrial Level in real time environment through this two days workshop program.
At the completion of the workshop the participants will be able to: Install, Configure and Manage private cloud (Cloud Administrator) {Open Source as well as VMWare } Develop and Deploy Cloud enabled Application (Cloud Application Developers) Access the Cloud services IaaS, SaaS, and PaaS (Cloud Users) Insight into the Cloud Components, Architectures (Researchers, Academicians). <b>Organised by ElectroCloud Labs. For more details contact Jayesh Kumbhare - 7063699187 </b><br><b>PRICE - Rs. 1000</b><br><b>TIME - 2 Days</b></p>
<a href="pdf/CC.pdf" target="_blank" class="btn btn-primary uppercase">Know More</a>
<a href="w2_registration.php" class="btn btn-primary uppercase">Register</a>
</div>
</div>
<div id="ws3-trigger"></div>
<div id="ws-3">
<div id="ws3-left" class="holder">
<h2>ENGINE OVERHAULING</h2>
<p>An engine overhaul is a comprehensive engine tune-up that involves removing and disassembling a vehicle's engine, testing all the components, cleaning and replacing parts as needed and then reassembling the engine. This is done to improve vehicle performance and prolong the life of the engine. <b>Organised by Sysro Technologies. For more details contact Jayesh Kumbhare - 7063699187 </b><br><b>PRICE - Rs. 900</b></p>
<a href="pdf/engine.pdf" target="_blank" class="btn btn-primary uppercase">Know More</a>
<a href="w3_registration.php" class="btn btn-primary uppercase">Register</a>
</div>
<div id="ws3-right">
<img src="images/engine.png" class="shadow">
</div>
</div>
<div id="ws4-trigger"></div>
<div id="ws-4">
<div id="ws4-left">
<img src="images/iot.jpg" class="shadow">
</div>
<div id="ws4-right" class="holder">
<h2>INTERNET OF THINGS (IOT)</h2>
<p>First ‘Steam Engine’ to the now ‘Cyber Physical Systems’ is all about advancement in Technologies for better Productivity by smart Solutions. Industry 4.O; the fourth Industrial revolution and the current one have got key space for ‘Internet of things’.
Connectivity of Physical Systems through cloud resulting in smarter solutions is ‘Internet of Things’, ‘Industry 4.0’ or ‘Cyber Physical Systems’ all about’.In simpler words when CSE/IT and Core branches can all sit under one roof for a Workshop’ it clearly states the bigger scope of IoT now and in upcoming days/decades across Globe.
In this workshop participants will learn designing programmable systems, interafacing various sensors, working with ESP8266, HC05, node-red, IBM Watson IoT, MQTT, AWS IoT and many more. <b>Organised by ElectroCloud Labs. For more details contact Jayesh Kumbhare - 7063699187 </b><br><b>PRICE - Rs. 900<br>Kit(optional) - Rs. 1100 per person (One kit for a group of 5 persons)</b></p>
<a href="pdf/IOT.pdf" target="_blank" class="btn btn-primary uppercase">Know More</a>
<a href="w1_registration.php" class="btn btn-primary uppercase">Register</a>
</div>
</div>
<div id="s-logo">
<img src="images/s.png">
</div>
<div id="sponsors-left" class="container">
<div class="row">
<div class="col-md-4 col-xs-12">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-1.png" />
</div>
<div class="col-md-4 col-xs-12">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-2.png" />
</div>
<div class="col-md-4 col-xs-12 ">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-3.png" />
</div>
</div>
<div class="row">
<div class="col-md-4 col-xs-12 ">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-4.png" />
</div>
<div class="col-md-4 col-xs-12 ">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-5.png" />
</div>
<div class="col-md-4 col-xs-12 ">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-6.png" />
</div>
</div>
<div class="row">
<div class="col-md-4 col-xs-12 ">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-7.png" />
</div>
<div class="col-md-4 col-xs-12 ">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-8.png" />
</div>
<div class="col-md-4 col-xs-12 ">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-9.png" />
</div>
</div>
<div class="row">
<div class="col-md-4 col-xs-12 ">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-10.png" />
</div>
<div class="col-md-4 col-xs-12 ">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-11.png" />
</div>
<div class="col-md-4 col-xs-12 ">
<img class="thumbnail img-holder img-responsive" src="images/clients-logos/client-12.png" />
</div>
</div>
</div>
<div id="sponsors-right" class="container">
<div class="row">
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-13.png" />
</div>
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-14.png" />
</div>
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-15.png" />
</div>
</div>
<div class="row">
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-16.png" />
</div>
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-17.png" />
</div>
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-18.png" />
</div>
</div>
<div class="row">
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-20.png" />
</div>
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-21.png" />
</div>
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-22.png" />
</div>
</div>
<div class="row">
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-24.png" />
</div>
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-19.png" />
</div>
<div class="col-md-4 col-xs-12">
<img class="img-holder img-responsive thumbnail" src="images/clients-logos/client-23.png" />
</div>
</div>
</div>
<div id="space">
</div>
<div id="space">
</div>
<div id="clouds-p">
<img id="cloud-c" src="images/Clouds/cloud3.png">
<img id="cloud-l" src="images/Clouds/cloud2.png">
<img id="cloud-r"src="images/Clouds/cloud1.png">
</div>
<div id="space">
</div>
<div id="space">
</div>
</div>
<div id="c-trig">
</div>
<div id="team-full">
<div id="space2">
</div>
<div id="trigger">
<div id="team">
<h1> TEAM</h1>
<br />
<br />
<div class="row">
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem1">
<div class="hovereffect">
<img class="img-responsive" src="images/members/Vivek.jpg" width="150" height="150">
<div class="overlay">
<p style=""> 9474246176 <br/> [email protected] </p>
</div>
</div>
<h3>VIVEK SINGH</h3>
<h4>CONVENER</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem2">
<div class="hovereffect">
<img class="img-responsive" src="images/members/Ayush.jpg" width="150" height="150">
<div class="overlay">
<p style=""> 9874020090 <br/> [email protected] </p>
</div>
</div>
<h3>AYUSH AKHOURY</h3>
<h4>GENERAL SECRETARY</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem3">
<div class="hovereffect">
<img class="img-responsive" src="images/members/rishi.png" width="150" height="150">
<div class="overlay">
<p style=""> 8016924690 <br/> [email protected] </p>
</div>
</div>
<h3>RISHI NIGAM</h3>
<h4>TREASURER</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem4">
<div class="hovereffect">
<img class="img-responsive" src="images/members/gaurav.png" width="150" height="150">
<div class="overlay">
<p style=""> 7602388231 <br/> [email protected] </p>
</div>
</div>
<h3>GAURAV AGARWAL</h3>
<h4>EXECUTIVE FEST COORDINATOR</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem5">
<div class="hovereffect">
<img class="img-responsive" src="images/members/dipendra.png" width="150" height="150">
<div class="overlay">
<p style=""> 9635050728 <br/> [email protected] </p>
</div>
</div>
<h3>DIPENDRA KUMAR</h3>
<h4>HEAD, Corporate Affairs</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem6">
<div class="hovereffect">
<img class="img-responsive" src="images/members/DeepakB.jpg" width="150" height="150">
<div class="overlay">
<p style=""> 9593987847 <br/> [email protected] </p>
</div>
</div>
<h3>DEEPAK BANSAL</h3>
<h4>HEAD, Corporate Affairs</h4>
</div>
</div>
</div>
<!-- row 2 -->
<div class="row"> <!--row2-->
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem7">
<div class="hovereffect">
<img class="img-responsive" src="images/members/avinash.png" width="150" height="150">
<div class="overlay">
<p style=""> 9749286303 <br/> [email protected] </p>
</div>
</div>
<h3>AVINASH MURMU</h3>
<h4>HEAD, IT Cell</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem8">
<div class="hovereffect">
<img class="img-responsive" src="images/members/sundeep.png" width="150" height="150">
<div class="overlay">
<p style=""> 9593654417 <br/> [email protected] </p>
</div>
</div>
<h3>SUNDEEP BABBUR</h3>
<h4>HEAD, IT Cell</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem9">
<div class="hovereffect">
<img class="img-responsive" src="images/members/Anish.jpg" width="150" height="150">
<div class="overlay">
<p style=""> 9593654417 <br/> [email protected] </p>
</div>
</div>
<h3>ANISH AGARWAL</h3>
<h4>HEAD, E-Cell</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem10">
<div class="hovereffect">
<img class="img-responsive" src="images/members/richa.png" width="150" height="150">
<div class="overlay">
<p style=""> 8348948219 <br/> [email protected] </p>
</div>
</div>
<h3>RICHA SINGHA</h3>
<h4>HEAD, E-Cell</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem11">
<div class="hovereffect">
<img class="img-responsive" src="images/members/Riddha.jpg" width="150" height="150">
<div class="overlay">
<p style=""> 9477486682 <br/> [email protected] </p>
</div>
</div>
<h3>RIDDHA MANNA</h3>
<h4>HEAD, Robo Cell</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem12">
<div class="hovereffect">
<img class="img-responsive" src="images/members/rohit.png" width="150" height="150">
<div class="overlay">
<p style=""> 8670807487 <br/> [email protected] </p>
</div>
</div>
<h3>ROHIT KUMAR JANA</h3>
<h4>HEAD, Robo Cell</h4>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem13">
<div class="hovereffect">
<img class="img-responsive" src="images/members/manoj.png" width="150" height="150">
<div class="overlay">
<p style=""> 9933250528 <br/> [email protected] </p>
</div>
</div>
<h3>MANOJ ANANTHARAM</h3>
<h4>HEAD, R&D Cell</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem14">
<div class="hovereffect">
<img class="img-responsive" src="images/members/Yogendra.jpg" width="150" height="150">
<div class="overlay">
<p style=""> 8906753147 <br/> [email protected] </p>
</div>
</div>
<h3>YOGENDRA SINGH PANCHAL</h3>
<h4>HEAD, R&D Cell</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem15">
<div class="hovereffect">
<img class="img-responsive" src="images/members/ankita.png" width="150" height="150">
<div class="overlay">
<p style=""> 9734904724 <br/> [email protected] </p>
</div>
</div>
<h3>ANKITA SINHA</h3>
<h4>HEAD, Publicity</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem16">
<div class="hovereffect">
<img class="img-responsive" src="images/members/satyam.png" width="150" height="150">
<div class="overlay">
<p style=""> 8759789840 <br/> [email protected] </p>
</div>
</div>
<h3>SATYAM VIVEK</h3>
<h4>HEAD, Publicity</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem17">
<div class="hovereffect">
<img class="img-responsive" src="images/members/alka.png" width="150" height="150">
<div class="overlay">
<p style=""> 7602267932 <br/> [email protected] </p>
</div>
</div>
<h3>ALKA KANWAR</h3>
<h4>HEAD, ATH</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem18">
<div class="hovereffect">
<img class="img-responsive" src="images/members/Dhrubojyoti.jpg" width="150" height="150">
<div class="overlay">
<p style=""> 8972985044 <br/> [email protected] </p>
</div>
</div>
<h3>DHRUBOJYOTI GHOSH</h3>
<h4>HEAD, ATH</h4>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem19">
<div class="hovereffect">
<img class="img-responsive" src="images/members/ankit.png" width="150" height="150">
<div class="overlay">
<p style=""> 7602388258 <br/> [email protected] </p>
</div>
</div>
<h3>ANKIT VERMA</h3>
<h4>EXECUTIVE MEMBER</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem20">
<div class="hovereffect">
<img class="img-responsive" src="images/members/Abhishekk.jpg" width="150" height="150">
<div class="overlay">
<p style=""> 9836322833 <br/> [email protected] </p>
</div>
</div>
<h3>ABHISHEK JAIN</h3>
<h4>EXECUTIVE MEMBER</h4>
</div>
</div>
<div class="col-lg-2 col-sm-4 col-xs-6">
<div id="mem21">
<div class="hovereffect">
<img class="img-responsive" src="images/members/ashmita.png" width="150" height="150">
<div class="overlay">