-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1809 lines (1729 loc) · 87.2 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 lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Zealicon'18</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/colorbox.css" rel="stylesheet">
<link href="css/about.css" rel="stylesheet">
<link href="css/contact.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<script src="js/jquery.colorbox-min.js"></script>
<script src="js/main.js"></script>
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<section id="home">
<!-- homepage -->
<div class="row">
<div class="col-md-12 col-xs-12 col-lg-12 col-sm-12">
<!-- layer1 -->
<div class="nav">
<div class="top">
<a href="" data-toggle="modal" data-target="#myModal" style="padding:0; border:0;outline-style: none;">About</a>
<a class="iframe cboxElement" href="events.html" style="padding:0; border:0;outline-style: none;">Events</a>
<a href="" data-toggle="modal" data-target="#myModal1" style="padding:0; border:0;outline-style: none;" class="schbtn">Schedule</a>
<a href="" data-toggle="modal" data-target="#myModal2" style="padding:0; border:0;outline-style: none;" class="spbtn">Sponsors</a>
<a href="" data-toggle="modal" data-target="#myModal4" style="padding:0; border:0;outline-style: none;" class="">Team</a>
<a href="" data-toggle="modal" data-target="#myModal5" style="padding:0; border:0;outline-style: none;">Contact</a>
</div>
</div>
<img class="img-responsive navbg" src="images/top-nav.png">
<div class="row">
<a href="http://register.zealicon.in" class="registerframe cboxElement"><img class="img-responsive baloon" src="images/bal.png"></a>
<img class="img-responsive tweety" src="images/Tweety.gif">
<img class="img-responsive jungle" src="images/jungle.gif">
<img class ="img-responsive castle" src="images/sandcastle.png">
<img class="img-responsive leftplant" src="images/kkk.png">
<img class ="img-responsive winnie" src="images/winnie.png">
<img class="img-responsive chipmunk" src="images/chipmunk.gif">
<img class ="img-responsive starfish" src="images/starfish.png">
<a href="" data-toggle="modal" data-target="#tatva">
<img class ="img-responsive sign" src="images/signboard.png">
</a>
<img class="img-responsive bird" src="images/bird.gif">
<img class="img-responsive boat" src="images/boat-home.png">
<img class="img-responsive shinchan" src="images/shinchan.gif">
<img class ="img-responsive pikachu" src="images/pikachu.gif">
<img class ="img-responsive pikachu_left" src="images/pikachu_left.gif">
<img class="img-responsive bird_left" src="images/bird_left.gif">
<a href="https://facebook.com/zealicon" target="_blank"><img class="img-responsive fb" src="images/fb_s.png"></a>
<a href="https://instagram.com/zealicon" target="_blank"><img class="img-responsive insta" src="images/insta.png"></a>
<img class="img-responsive wave" src="images/tape-wave.png">
<a onclick="togglePlay()" href="#" title="Audio" >
<img class ="img tape" src="images/tape.gif">
</a>
</div>
<!-- layer1 -->
<img class ="img grass1" src="images/leaves-left.png">
<img class ="img grass2" src="images/leaves-right.png">
<!-- layer2 -->
<div class="col-md-12 col-xs-12 col-lg-12 col-sm-12">
<img src="images/home.png" class="img-responsive shore navbar-fixed-bottom">
<!-- layer2 -->
<!-- layer3 -->
<div class="row" style="margin-bottom: 20%;">
<div class="col-md-12 col-xs-12 col-lg-12 col-sm-12">
<img class="img-responsive cloud1" src="images/cloud.png">
<img class="img-responsive cloud2" src="images/cloud.png">
<img class="img-responsive cloud3" src="images/cloud.png">
<img class="img-responsive cloud4" src="images/cloud.png">
<img class="img-responsive cloud5" src="images/cloud.png">
<canvas id="canvas" class="water"></canvas>
<img class="img-responsive zealicon" src="images/zealicon.png">
<img class="img-responsive sun" src="images/sun.png">
<img class="img-responsive moon" src="images/moon.png">
<img class="img-responsive birds" src="images/birds.gif">
</div>
</div>
<!-- layer3 -->
</div>
</div>
</div>
<!-- homepage -->
<div class="modal fade " id="tatva" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<!-- <img class ="img aboutbg" src="images/tatvabg.jpg" /> -->
<div class="modal-body" style="height: 100%;">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-arrow-left"></i></button>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="images/tatvabg.jpg" class="bigevent" alt="TatvaK">
</div>
<div class="item">
<img src="images/openmic.jpg" class="bigevent" alt="Open Mic">
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" 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="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade " id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<img class ="img aboutbg" src="images/aboutpage/about-without-elements3.png" />
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-arrow-left"></i></button>
<img class ="img about-scooby" src="images/aboutpage/about-scooby.png" />
<div class="about-overlay container" id="style-1">
<div class="force-overflow">
<p class="">Pokemon at 5, and then Beyblade at 5.30. Tom & Jerry, Looney tunes, Scooby Doo, Shaktiman…. That’s so Raven...Video games..
<br><br>
Do you yearn to live and bring all those times back ?
<br><br>
If the answer is Yes...then we are back with our Zeal… are you ?
<br><br>
JSS Academy of Technical Education, Noida presents to you the most enthusiastic annual Techno-Cultural fest in NCR- the “Zealicon”, turning 10 with the 90’s nostalgia.
This time with a different aura and touchstone but an antiquated journey down to one’s memory lane.
<br><br>
Join us on this nostalgic journey from 14th March 2018 - 17th March 2018 with opportunity to be a part of some airing and zestful events. Promising, loads of fun, prizes and exposure to make this fest Bigger this time!
<br><br>
Further details will be disclosed soon. Keep visiting this page to stay updated on your journey in ZEALICON'18.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade " id="myModal1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<img class ="img schbg" src="images/schedule-bg.png">
<div class="modal-body" style="height: 100%;">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-arrow-left"></i></button>
<h2 style="text-align:center; margin-top:10%; color:#8B4513; font-weight:1000; font-size: 3em;">Schedule</h2>
<div class="crate-container">
<a href="" data-toggle="modal" data-target="#day1">
<img class="img-responsive crate1" src="images/crate1.png">
</a>
<a href="" data-toggle="modal" data-target="#day2">
<img class="img-responsive crate2" src="images/crate2.png">
</a>
<a href="" data-toggle="modal" data-target="#day3">
<img class="img-responsive crate3" src="images/crate3.png">
</a>
<a href="" data-toggle="modal" data-target="#day4">
<img class="img-responsive crate4" src="images/crate4.png">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade " id="myModal4" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<img class ="img sponsorbg" src="images/teampage.png">
<div class="modal-body" style="height: 100%;">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="fa fa-arrow-left" style="color: black;"></i></button>
<div style="position: absolute; top: 50%; left: 40%; transform: translate(-50%,-50%);" class="teambtn">
<a href="" data-toggle="modal" data-target="#myModal3">
<img src="images/core-team.png" alt="img04" class="team-link">
</a>
</div>
<div style="position: absolute; top: 50%; left: 65%; transform: translate(-50%,-50%);" class="teambtn">
<a href="" data-toggle="modal" data-target="#myModal6" >
<img src="images/web-team.png" class="team-link">
</a>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade " id="day1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<img class ="img sponsorbg" src="images/schedule-bg.png">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close" style="color: black;"><i class="fa fa-arrow-left"></i></button>
<div class="contact-overlay" id="style-1" style="overflow-y: scroll !important; height:80vh;">
<div class="force-overflow">
<h2 style="color:white; text-align:center;">Day 1</h2>
<div class ="slot">
<a href="Day 1.pdf"><h3 style="color:white; text-align:center; text-decoration: none;">View Detailed Schedule</h3></a>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">9:00am-11:00am</h3>
<div class="row" style="margin-left: 70px">
<div style="float:left; width:30%;">
Excellencia
</div>
<div style="float:left; width:65%;">
AB-1 206
</div>
<div style="float:left; width:30%;">
Quiz-Up Round-1
</div>
<div style="float:left; width:65%;">
AB-1 Second Floor /Third Floor
</div>
<div style="float:left; width:30%;">
Brand It Round-1
</div>
<div style="float:left; width:65%;">
AB-1 101,102
</div>
<div style="float:left; width:30%;">
Beat the Weight
</div>
<div style="float:left; width:65%;">
AB-2 Ground Floor Left Corridor
</div>
<div style="float:left; width:30%;">
Photography
</div>
<div style="float:left; width:65%;">
AB-3 204 Projector Room
</div>
<div style="float:left; width:30%;">
Lay it Out
</div>
<div style="float:left; width:65%;">
AB-3 Lab-9, 10
</div>
<div style="float:left; width:30%;">
Popsicle Bridge Making
</div>
<div style="float:left; width:65%;">
AB 4 Seminar Hall
</div>
<div style="float:left; width:30%;">
LAN Gaming (NFS)
</div>
<div style="float:left; width:65%;">
AB-5 MCA Lab
</div>
<div style="float:left; width:30%;">
Robolympics Round1 & Round2
</div>
<div style="float:left; width:65%;">
Courtyard AB-3 Side
</div>
<div style="float:left; width:30%;">
Market Mayhem Round 1
</div>
<div style="float:left; width:65%;">
Courtyard (Chemistry Gallery)
</div>
<div style="float:left; width:30%;">
Halla Bol
</div>
<div style="float:left; width:65%;">
Central Courtyard
</div>
<div style="float:left; width:30%;">
Xccelarado
</div>
<div style="float:left; width:65%;">
Ground in front of water tap
</div>
<div style="float:left; width:30%;">
Sunlight Rover
</div>
<div style="float:left; width:65%;">
Playground(Main Stage)
</div>
</div>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">11:00am-01:00pm</h3>
<div class="row" style="margin-left: 70px">
<div style="float:left; width:30%;">
Home Automation
</div>
<div style="float:left; width:65%;">
AB-2 109
</div>
<div style="float:left; width:30%;">
Music Composition
</div>
<div style="float:left; width:65%;">
AB-3 204
</div>
<div style="float:left; width:30%;">
Code in Pair Round 1
</div>
<div style="float:left; width:65%;">
AB-3 Lab-9,10
</div>
<div style="float:left; width:30%;">
All about 90s
</div>
<div style="float:left; width:65%;">
AB-3 2nd floor class rooms
</div>
<div style="float:left; width:30%;">
Rangoli
</div>
<div style="float:left; width:65%;">
AB-5 Ampitheatre
</div>
</div>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">01:00pm-03:00pm</h3>
<div class="row" style="margin-left:70px">
<div style="float:left; width:30%;">
Asset Design
</div>
<div style="float:left; width:65%;">
AB-1 Lab 1,2,3
</div>
<div style="float:left; width:30%;">
Quiz-UP Round-2
</div>
<div style="float:left; width:65%;">
AB-1 101
</div>
<div style="float:left; width:30%;">
Junkingineering
</div>
<div style="float:left; width:65%;">
AB-2 111
</div>
<div style="float:left; width:30%;">
Mechlego
</div>
<div style="float:left; width:65%;">
AB-2 207
</div>
<div style="float:left; width:30%;">
Photobooth
</div>
<div style="float:left; width:65%;">
AB-2 GROUND FLOOR Right Corridor
</div>
<div style="float:left; width:30%;">
Solo Dance Prelims
</div>
<div style="float:left; width:65%;">
AB-3 3rd FLOOR/4th FLOOR(OPEN AREA)
</div>
<div style="float:left; width:30%;">
LAN Gaming (Counter Strike)
</div>
<div style="float:left; width:65%;">
AB-5 MCA LAB
</div>
<div style="float:left; width:30%;">
Mann Kiya kr Diya
</div>
<div style="float:left; width:65%;">
MPH
</div>
<div style="float:left; width:30%;">
Beyblade Battle
</div>
<div style="float:left; width:65%;">
COURTYARD AB1 SIDE
</div>
<div style="float:left; width:30%;">
Tommorow's Tesla
</div>
<div style="float:left; width:65%;">
COURTYARD (CHEMISTRY GALLERY)
</div>
<div style="float:left; width:30%;">
Model making Competition
</div>
<div style="float:left; width:65%;">
AB 4 Seminar Hall
</div>
<div style="float:left; width:30%;">
Beat the Weight contd….
</div>
<div style="float:left; width:65%;">
Courtyard
</div>
</div>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">3:00pm-6:00pm</h3>
<div class="row" style="margin-left: 70px;">
<div style="float:left; width:30%;">
Duet Dance Prelims
</div>
<div style="float:left; width:65%;">
AB-3 3rd FLOOR/4th FLOOR(OPEN AREA)
</div>
<div style="float:left; width:30%;">
Code In Pair Round 2
</div>
<div style="float:left; width:65%;">
AB-3 LAB -9 , 10
</div>
<div style="float:left; width:30%;">
All about 90s
</div>
<div style="float:left; width:65%;">
AB3-2nd floor class rooms
</div>
<div style="float:left; width:30%;">
Market Mayhem Round-2
</div>
<div style="float:left; width:65%;">
AB 3-301,302,303/AB2 CLASS
</div>
<div style="float:left; width:30%;">
RC Plane
</div>
<div style="float:left; width:65%;">
PLAYGROUND(MAIN STAGE) Ground
</div>
<div style="float:left; width:30%;">
ROBOWARS
</div>
<div style="float:left; width:65%;">
RO PLANT
</div>
<div style="float:left; width:30%;">
Lazer Strike
</div>
<div style="float:left; width:65%;">
Behind RO Plant
</div>
</div>
</div>
<br>
<br>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade " id="day2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<img class ="img sponsorbg" src="images/schedule-bg.png">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close" style="color: black;"><i class="fa fa-arrow-left"></i></button>
<div class="contact-overlay" id="style-1" style="overflow-y: scroll !important; height:80vh;">
<div class="force-overflow">
<h2 style="color:white; text-align:center;">Day 2</h2>
<div class ="slot">
<a href="Day 2.pdf"><h3 style="color:white; text-align:center; text-decoration: none;">View Detailed Schedule</h3></a>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">9:00am-11:00am</h3>
<div class="row" style="margin-left: 70px">
<div style="float:left; width:30%;">
Turn Coat
</div>
<div style="float:left; width:65%;">
AB-1 FIRST FLOOR CLASSES
</div>
<div style="float:left; width:30%;">
Mighty Maneuvers
</div>
<div style="float:left; width:65%;">
AB-1 SECOND FLOOR(OPEN AREA)
</div>
<div style="float:left; width:30%;">
Envisage
</div>
<div style="float:left; width:65%;">
AB-1 102
</div>
<div style="float:left; width:30%;">
Code in Less
</div>
<div style="float:left; width:65%;">
AB-3 LAB -9 , 10
</div>
<div style="float:left; width:30%;">
Overhaul
</div>
<div style="float:left; width:65%;">
AB 4 Seminar Hall
</div>
<div style="float:left; width:30%;">
Junkingineering Round2
</div>
<div style="float:left; width:65%;">
AB4 WORKSHOP PRACTICES
</div>
<div style="float:left; width:30%;">
Andro Car
</div>
<div style="float:left; width:65%;">
COURTYARD AB3 SIDE
</div>
<div style="float:left; width:30%;">
Water Rocket
</div>
<div style="float:left; width:65%;">
FOOTBALL PLAYGROUND(FRONT OF AB4)
</div>
<div style="float:left; width:30%;">
Gesture Rover
</div>
<div style="float:left; width:65%;">
AB-3 FIRST FLOOR(OPEN AREA
</div>
<div style="float:left; width:30%;">
Quinnacle Round1
</div>
<div style="float:left; width:65%;">
AB3-2nd floor class rooms
</div>
<div style="float:left; width:30%;">
Technical Hunt
</div>
<div style="float:left; width:65%;">
AB-5 MCA LAB
</div>
<div style="float:left; width:30%;">
Smackdown
</div>
<div style="float:left; width:65%;">
COURTYARD ROAD b/Wab2 & AB3
</div>
<div style="float:left; width:30%;">
Photobooth
</div>
<div style="float:left; width:65%;">
AB-2 GROUND FLOOR (Right Corridor)
</div>
<div style="float:left; width:30%;">
Photography
</div>
<div style="float:left; width:65%;">
AB-3 204 PROJECTOR ROOM
</div>
<div style="float:left; width:30%;">
Pratibimba
</div>
<div style="float:left; width:65%;">
MPH
</div>
</div>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">11:00am-01:00pm</h3>
<div class="row" style="margin-left: 70px">
<div style="float:left; width:30%;">
All about 90s Round -2
</div>
<div style="float:left; width:65%;">
AB-2 207 (PROJECTOR ROOM)
</div>
<div style="float:left; width:30%;">
Ad Mad Show
</div>
<div style="float:left; width:65%;">
AB 5 AMPHITHEATRE
</div>
<div style="float:left; width:30%;">
Matrix Finale
</div>
<div style="float:left; width:65%;">
AB-2 SIMULATION (LAB EED)
</div>
<div style="float:left; width:30%;">
Rocker Bogie
</div>
<div style="float:left; width:65%;">
GND IN FRONT OF WATER TAP
</div>
<div style="float:left; width:30%;">
Web-o-cart
</div>
<div style="float:left; width:65%;">
AB-3 LAB -9 , 10
</div>
</div>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">01:00pm-03:00pm</h3>
<div class="row" style="margin-left: 70px">
<div style="float:left; width:30%;">
Treasure Hunt
</div>
<div style="float:left; width:65%;">
COURTYARD AB1 SIDE
</div>
<div style="float:left; width:30%;">
Murder Mystery
</div>
<div style="float:left; width:65%;">
AB-1 206
</div>
<div style="float:left; width:30%;">
Solo singing Prelims
</div>
<div style="float:left; width:65%;">
AB-3 3rd FLOOR/4th FLOOR(OPEN AREA)
</div>
<div style="float:left; width:30%;">
Bizz-O-War Round 1
</div>
<div style="float:left; width:65%;">
AB3-2nd floor class rooms
</div>
<div style="float:left; width:30%;">
Eco-Ideathon
</div>
<div style="float:left; width:65%;">
AB 4 Seminar Hall
</div>
<div style="float:left; width:30%;">
Brand It Round-2
</div>
<div style="float:left; width:65%;">
AB-1 301 , 302, 303
</div>
<div style="float:left; width:30%;">
Home Automation Round-2
</div>
<div style="float:left; width:65%;">
AB-2 109
</div>
<div style="float:left; width:30%;">
Quinnacle Round 2
</div>
<div style="float:left; width:65%;">
AB-2 207 (PROJECTOR ROOM)
</div>
<div style="float:left; width:30%;">
Junkingineering Finale
</div>
<div style="float:left; width:65%;">
COURTYARD AB2 SIDE
</div>
</div>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">03:00pm-06:00pm</h3>
<div class="row" style="margin-left: 70px">
<div style="float:left; width:30%;">
Lazer Strike
</div>
<div style="float:left; width:65%;">
BEHIND RO PLANT
</div>
<div style="float:left; width:30%;">
Crack the shell
</div>
<div style="float:left; width:65%;">
AB-3 LAB -9 , 10
</div>
</div>
</div>
<br>
<br>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade " id="day3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<img class ="img sponsorbg" src="images/schedule-bg.png">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close" style="color: black;"><i class="fa fa-arrow-left"></i></button>
<div class="contact-overlay" id="style-1" style="overflow-y: scroll !important; height:80vh;">
<div class="force-overflow">
<h2 style="color:white; text-align:center;">Day 3</h2>
<div class ="slot">
<a href="Day 3.pdf"><h3 style="color:white; text-align:center; text-decoration: none;">View Detailed Schedule</h3></a>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">9:00am-11:00am</h3>
<div class="row" style="margin-left: 70px;">
<div style="float:left; width:30%;">
Solo Dancing+Duet Dancing Finale
</div>
<div style="float:left; width:65%;">
MPH
</div>
<div style="float:left; width:30%;">
Roboolympics Round 3 and 4
</div>
<div style="float:left; width:65%;">
Courtyard AB3 Side
</div>
<div style="float:left; width:30%;">
Baloon Shot
</div>
<div style="float:left; width:65%;">
Courtyard AB2 Side
</div>
<div style="float:left; width:30%;">
Tasveer E Shero Shyari
</div>
<div style="float:left; width:65%;">
AB1 First Floor Classes
</div>
<div style="float:left; width:30%;">
Life Size Puzzle
</div>
<div style="float:left; width:65%;">
AB3 First Floor Classes
</div>
<div style="float:left; width:30%;">
Snake and Ladder Round 1
</div>
<div style="float:left; width:65%;">
AB3 First Floor Classes
</div>
<div style="float:left; width:30%;">
Data Phobia
</div>
<div style="float:left; width:65%;">
AB5
</div>
<div style="float:left; width:30%;">
Cineczar Round 1
</div>
<div style="float:left; width:65%;">
AB3 Second Floor Classes
</div>
<div style="float:left; width:30%;">
Meri Kalam Se
</div>
<div style="float:left; width:65%;">
AB3 Seminar Hall 213
</div>
<div style="float:left; width:30%;">
Smackdown
</div>
<div style="float:left; width:65%;">
courtyard Room b/w AB2 and AB3
</div>
<div style="float:left; width:30%;">
Imagica
</div>
<div style="float:left; width:65%;">
Courtyard AB1 side
</div>
</div>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">11:00am-1:00pm</h3>
<div class="row" style="margin-left: 70px;">
<div style="float:left; width:30%;">
Photography
</div>
<div style="float:left; width:65%;">
AB3 204 Projector Room
</div>
<div style="float:left; width:30%;">
Mookhabhinay
</div>
<div style="float:left; width:65%;">
MPH
</div>
<div style="float:left; width:30%;">
Imagica
</div>
<div style="float:left; width:65%;">
COURTYARD AB1 SIDE
</div>
<div style="float:left; width:30%;">
Photobooth
</div>
<div style="float:left; width:65%;">
AB-2 GROUND FLOOR
</div>
<div style="float:left; width:30%;">
Corporate Roadies
</div>
<div style="float:left; width:65%;">
AB 5 AMPHITHEATRE
</div>
<div style="float:left; width:30%;">
Spontaneous with Props 1.5+ Group Dance Finale
</div>
<div style="float:left; width:65%;">
MPH
</div>
</div>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">1:00pm-3:00pm</h3>
<div class="row" style="margin-left: 70px;">
<div style="float:left; width:30%;">
Bizz-O-War Round-2
</div>
<div style="float:left; width:65%;">
AB-1 101 (PROJECTOR ROOM)
</div>
<div style="float:left; width:30%;">
Criminal Minds
</div>
<div style="float:left; width:65%;">
AB2
</div>
<div style="float:left; width:30%;">
All About 90s Round-3
</div>
<div style="float:left; width:65%;">
AB-3 FIRST FLOOR Class Rooms
</div>
<div style="float:left; width:30%;">
Cineczar Round-2
</div>
<div style="float:left; width:65%;">
AB3-2nd floor class rooms
</div>
<div style="float:left; width:30%;">
Survival of the Fastest
</div>
<div style="float:left; width:65%;">
COURTYARD AB2
</div>
<div style="float:left; width:30%;">
Graffti
</div>
<div style="float:left; width:65%;">
COURTYARD (CHEMISTRY GALLERY)
</div>
<div style="float:left; width:30%;">
Scrap Stand
</div>
<div style="float:left; width:65%;">
COURTYARD (ACCOUNT GALLERY)
</div>
<div style="float:left; width:30%;">
Brain Chase
</div>
<div style="float:left; width:65%;">
AB-2 207 (PROJECTOR ROOM)
</div>
<div style="float:left; width:30%;">
Reverse Gear
</div>
<div style="float:left; width:65%;">
AB-5 MCA LAB
</div>
<div style="float:left; width:30%;">
Life Size Puzzle Round-2
</div>
<div style="float:left; width:65%;">
COURTYARD AB3 SIDE
</div>
</div>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">3:00pm-5:00pm</h3>
<div class="row" style="margin-left: 70px">
<div style="float:left; width:30%;">
Group Singing
</div>
<div style="float:left; width:65%;">
PLAYGROUND(MAIN STAGE)
</div>
<div style="float:left; width:30%;">
Spoof
</div>
<div style="float:left; width:65%;">
MPH
</div>
<div style="float:left; width:30%;">
Battle of Bands
</div>
<div style="float:left; width:65%;">
PLAYGROUND(MAIN STAGE)
</div>
</div>
</div>
<br>
<br>
<br>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade " id="day4" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<img class ="img sponsorbg" src="images/schedule-bg.png">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close" style="color: black;"><i class="fa fa-arrow-left"></i></button>
<div class="contact-overlay" id="style-1" style="overflow-y: scroll !important; height:80vh;">
<div class="force-overflow">
<h2 style="color:white; text-align:center;">Day 4</h2>
<div class ="slot">
<a href="Day 4.pdf"><h3 style="color:white; text-align:center; text-decoration: none;">View Detailed Schedule</h3></a>
</div>
<div class ="slot">
<h3 style="color:white; text-align:center;">9:00am-11:00am</h3>
<div class="row" style="margin-left: 70px">
<div style="float:left; width:30%;">
Solo Singing+ Duet Singing Finale
</div>
<div style="float:left; width:65%;">
MPH
</div>
<div style="float:left; width:30%;">
Minute to win it
</div>
<div style="float:left; width:65%;">
COURTYARD AB2 SIDE
</div>
<div style="float:left; width:30%;">
Safar
</div>
<div style="float:left; width:65%;">
COURTYARD (ACCOUNT GALLERY)
</div>
<div style="float:left; width:30%;">
Electro Hunt
</div>
<div style="float:left; width:65%;">
AB-1 SECOND FLOOR CLASSES& OPEN AREA
</div>
<div style="float:left; width:30%;">
ZOC
</div>
<div style="float:left; width:65%;">
AB3-2nd floor class rooms
</div>
<div style="float:left; width:30%;">
Nautanki
</div>
<div style="float:left; width:65%;">
AB 5 AMPHITHEATRE
</div>
<div style="float:left; width:30%;">