-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2372 lines (2166 loc) · 99.3 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'>
<!-- Yo, Bro agar koi mujhe bolega ki 'Jake Chill maar Enjoy kar' To mein jaa ke Comment daal dega. -->
<head>
<meta charset='UTF-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<meta http-equiv='X-UA-Compatible' content='ie=edge' />
<title>Explore 2k18</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/pagePiling.js/1.5.5/jquery.pagepiling.min.css">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="css/main.css" rel="stylesheet">
</head>
<!-- What'up What'up What'up !!! -->
<body>
<div id="pagepiling">
<div class="preload logo1">
</div>
<div id="load-screen">
<div id="loading"></div>
<div class="loader-section section-right"></div>
<div class="loader-section section-left"></div>
</div>
<div class="section pp-scrollable">
<video autoplay loop id="myVideo">
<source src="vid/intro.mp4" type="video/mp4">
</video>
<div id="teamright"><svg width="18px" height="17px" viewBox="-1 0 18 17" version="1.1" xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink">
<g>
<polygon class="arrow" points="16.3746667 8.33860465 7.76133333 15.3067621 6.904 14.3175671 14.2906667 8.34246869 6.908 2.42790698 7.76 1.43613596"></polygon>
<polygon class="arrow-fixed" points="16.3746667 8.33860465 7.76133333 15.3067621 6.904 14.3175671 14.2906667 8.34246869 6.908 2.42790698 7.76 1.43613596"></polygon>
<path d="M-4.58892184e-16,0.56157424 L-4.58892184e-16,16.1929159 L9.708,8.33860465 L-1.64313008e-15,0.56157424 L-4.58892184e-16,0.56157424 Z M1.33333333,3.30246869 L7.62533333,8.34246869 L1.33333333,13.4327013 L1.33333333,3.30246869 L1.33333333,3.30246869 Z"></path>
</g>
</svg></div>
<img src="img/theme.png" class="theme-logo" id="oneworld">
<aside class="profile-card">
<header>
<!-- here’s the avatar -->
<img src="img/neelam.jpg">
</a>
<!-- the username -->
<h1>Neelam Verma</h1>
<!-- and role or location -->
<h2>- Overall Advisor -</h2>
<h4 style="color:white;">Dy. Dean OSA</h4>
</header>
<!-- bit of a bio; who are you? -->
<!-- some social links to show off -->
</aside>
<nav class="menu">
<input type="checkbox" href="#" class="menu-open" name="menu-open" id="menu-open"/>
<label class="menu-open-button" for="menu-open">
<span class="hamburger hamburger-1"></span>
<span class="hamburger hamburger-2"></span>
<span class="hamburger hamburger-3"></span>
</label>
<a href="https://www.facebook.com/cu.explore" target="_blank" class="menu-item"> <i class="fa fa-facebook"></i> </a>
<a href="https://www.instagram.com/explorefest/" target="_blank" class="menu-item"> <i class="fa fa-instagram"></i> </a>
<a href="mailto:[email protected]" target="_blank" class="menu-item"> <i class="fa fa-envelope"></i> </a>
</nav>
<!-- filters -->
<svg xmlns="https://www.w3.org/2000/svg" version="1.1">
<defs>
<filter id="shadowed-goo">
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="goo" />
<feGaussianBlur in="goo" stdDeviation="3" result="shadow" />
<feColorMatrix in="shadow" mode="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 -0.2" result="shadow" />
<feOffset in="shadow" dx="1" dy="1" result="shadow" />
<feComposite in2="shadow" in="goo" result="goo" />
<feComposite in2="goo" in="SourceGraphic" result="mix" />
</filter>
<filter id="goo">
<feGaussianBlur in="SourceGraphic" result="blur" stdDeviation="10" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 18 -7" result="goo" />
<feComposite in2="goo" in="SourceGraphic" result="mix" />
</filter>
</defs>
</svg>
<div id='intro'>
<img src="img/Explore.png" alt="" class="logo" id="logo">
<!-- this is the markup. you can change the details (your own name, your own avatar etc.) but don’t change the basic structure! -->
<!-- that’s all folks! -->
<br/>
<br/>
<br/>
<div class="btn">
<div class="btn-back">
<form action="" method="" id="retro-mail-form" name="submit-to-google-sheet">
<ul id="progressbar">
<center>
<li class="active">Personal Details</li>
<li>Team Details</li>
<li>Submit</li>
</center>
</ul>
<fieldset id='fieldSet_1'>
<label id="icon" for="name"><i class="fa fa-user"></i></label>
<input type="text" name="name" id="name" placeholder="Name" required onchange="return nvalidation()" />
<div class="notice hidden error" id="name_error">Names can't include special symbols or numbers</div>
<label id="icon" for="fname"><i class="fa fa-user-md"></i></label>
<input type="text" name="fathers-name" id="fname" placeholder="Father's Name" required onchange="return fnvalidation()" />
<div class="notice hidden error" id="fname_error">Names can't include special symbols or numbers</div>
<div class="gender">
<label id="rlabel" class="g-key11">Gender</label>
<div class="g-value11">
<div class="g-value1">
<input type="radio" value="male" id="male" name="gender" checked />
<label for="male" class="radio">Male</label>
</div>
<div class="g-value2">
<input type="radio" value="female" id="female" name="gender" />
<label for="female" class="radio">Female</label>
</div>
</div>
<!-- What are you looking for in the SOURCE CODE? -->
</div>
<label id="icon" for="email"><i class="fa fa-envelope-o"></i></label>
<input type="email" name="emailId" id="email" placeholder="Email" required onchange="return email_val()" />
<div class="notice hidden error" id="email_error">Email must be valid in the form of [email protected]</div>
<label id="icon" for="phone"><i class="fa fa-phone"></i></label>
<input type="text" name="phoneNumber" id="phone" placeholder="Mobile Number (10 Digits Only)" required onchange="return mob_val()" />
<input type="text" name="Rollno" id="phone" placeholder="Enter your Roll No." required />
<input type="text" name="Dept" id="phone" placeholder="Enter your Dept." required />
<div class="notice hidden error" id="mob_error">Make sure it's a 10 digit number' </div>
<label id="icon" for="name"><i class="fa fa-building-o"></i></label>
<input type="text" name="college" id="college" placeholder="Campus" required onchange="return cnvalidation()" />
<div class="notice hidden error" id="cname_error">College names can't include special symbols or numbers</div>
<div id="events">
<label id="rlabel4" class="g-key33">Events</label>
<div class="g-value44 select-style">
<select id="evento" name="events" required onchange="return event_validation()">
<option value="">Select your event</option>
<option value="voguesta">
Voguesta
</option>
<option value="fusion funk">
Fusion Funk
</option>
<option value="Mr. & Ms. Explore">
Mr. & Ms. Explore
</option>
<option value="Symphony">
Symphony
</option>
<option value="Frisk Feet">
Frisk Feet
</option>
<option value="Doodle/Cartooning">
Doodle/Cartooning/Sketching
</option>
<option value="Brush Off">
Brush Off
</option>
<option value="Lens it Up">
Lens it up
</option>
<option value="Chakravyuh">
Chakravyuh
</option>
<option value="Codathon">
Codathon
</option>
<option value="Robo Race">
Robo Race
</option>
<option value="Bollywood Battle">
Bollywood Battle
</option>
<option value="IPL Auction & Quiz">
IPL Auction & Sports Quiz
</option>
<option value="Logo Quiz">
Logo Quiz
</option>
<option value="Business Quiz">
Business Quiz
</option>
<option value="Pithoo">
Pithoo
</option>
<option value="Spell Bee/Scrabble">
Spell Bee
</option>
<option value="Auto & Tech Quiz">
Auto & Tech Quiz
</option>
<option value="Pictionary">
Pictionary
</option>
<option value="JAM">
JAM
</option>
<option value="Minute to Win it">
Minute to Win it
</option>
<option value="Game of Doubles">
Game of Doubles
</option>
<option value="Laser Maze" disabled>
Lazer Maze
</option>
<option value="Mystery Room">
Mystery Room
</option>
<option value="Bottle Flip Challenge" disabled>
Bottle Flip Challenge
</option>
</select>
<!-- Yo, Bro agar koi mujhe bolega ki 'Jake Chill maar Enjoy kar' To mein jaa ke Internshala pe ek aur internship apply kar dega. -->
</div>
</div>
<div class="notice hidden error" id="event_error">Please select an event from the above list</div>
<div id="member_ct_outer">
<label id="rlabel5" class="g-key33">Members</label>
<div class="member_ct select-style g-value44" id="member_count">
<select id="member_select" name="members">
<option value="1"> 1 </option>
</select>
</div>
</div>
<input type="button" name="next" class="button next action-button" value="Next" id="next_1">
</fieldset>
<fieldset id='fieldSet_2'>
<h2 class="fs-title">
<label id="rlabel3">Team Member Details</label>
</h2>
<!--Set g-value44 display: none and insert select inside g-value44-->
<div class="g-value44" id="g-value-mem">
</div>
<div class="notice hidden error" id="member_error">Form has returned errors. Please cross verify the form.</div>
<input type="button" name="previous" id="previous1" class="button previous action-button" value="Previous" style="">
<input type="button" name="next" class="button next action-button" value="Next" id="next_2">
</fieldset>
<input id="cancel" type="button" value="Cancel" class="button no">
<input id="submit" type="button" value="Submit" class="button yes">
</fieldset>
</form>
</div>
<div class="btn-front">
<a class="btn-liquid">
<span class="inner">Register</span>
</a>
</div>
</div>
</div>
</div>
<!-- Check These out
https://www.facebook.com/officialadagio
https://www.instagram.com/officialadagio/
https://www.twitter.com/officialadagio
https://www.youtube.com/AdagioMusic
https://www.soundcloud.com/officialadagio
#UnPaid_Promotions
-->
<div class="section pp-scrollable" style="background: url(img/back.jpg);background-size:cover;" id="section2">
<div id="modal-container" class="voguesta-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Voguesta</h1>
<p style="font-size:24px;line-height: 25px;">
“Fashion is what you’re offered. Style is what you choose.” <br/>
The elegance, the persona- if that’s what your style statement is, then
it’s show time with Charisma at EXPLORE’17. Go mesmerise those eyes
with every step you walk! <br/>
RULES: <br/>
Team Limit: 6-10 Members <br/>
Number of rounds: 1 <br/>
Time limit: Ultimate Round: 8 minutes (Performance) + 2 minutes <br/>
(setting/clearance) <br/>
General Rules: <br/>
•Repetiton of participant is not allowed for more than one team for the
same event. <br/>
• Participants are required to carry their tracks/music only in a CD or a
pen-drive. The track should be in .mp3/.wav format only. <br/>
• All costumes and props are to be arranged by the participating team. <br/>
• Any kind of fluids, flames, powders or heavy objects are strictly
prohibited. <br/>
•Lighting facility is to be availed. One person of the group can supervise; else it will be up to the lights technicians. Organizers will not
be responsible for any flaws due to unguided lighting. <br/>
• Any kind of vulgarity will lead to immediate disqualification. Should
the teams have any doubts regarding their costume, they should discuss it with organizers before performing.
• The decision of the judges will be final and binding in all cases. <br/>
Marks shall be deducted for exceeding the time limit.
•The participating team will be disqualified if their performance depicts something inappropriate or something which should not be shown in
the public. <br/>
•Every participant should carry his/her College ID Card. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="symphony-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Symphony</h1>
<p style="font-size:24px;line-height: 25px;">"Singing is a way of escaping. It's another world. I am no longer on
earth.“ <br/>
Rules: <br/>
Team Limit: Individual Participation <br/>
Number of rounds: 1 <br/>
Time limit: 2 minutes <br/>
General rules: <br/>
• Participants are required to carry their background tracks/music
only in a CD or a pen-drive. The track should be in .mp3/.wav
format only. <br/>
• Maximum of 2 instrumentalist/accompanist is allowed. <br/>
• Selection of song must be decent and should not promote
profanity& obscenity and must not be offensive based on religion,
caste, creed, gender etc. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="mrmsexplore-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Mr. & Ms. Explore</h1>
<p style="font-size:24px;line-height: 25px;">
“Style is a reflection of your attitude and personality. Its a universal
language which builds your identity. A world of glitz, glamour and
style!” <br/>
Rules: <br/>
Round 1 <br/>
•Every Participant will be given a tag number before participating in the
Fashion show. <br/>
• The parameters of judgment will be Confidence, Personality and Walk. <br/>
•Decision of the judges will be final. <br/>
•Only 20 participants (10 boys+ 10 girls) will qualify for the second
round. <br/>
Round 2: <br/>
•Each participant must pick up a chit from the bowl. Each chit
carries a question they must answer. <br/>
• Every participant will be given 1 minute to think and answer the
question. Any time delay shall result in deduction of marks. <br/>
• All the participants are requested to not make any personal remark
while answering the questions. <br/>
•The decision of the judges shall be considered final and
unquestionable at any stage. <br/>
•Every student should carry their college ID card. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<!-- KEEP Scrolling, Shayad Kuch mil jaye -->
<div id="modal-container" class="friskfeet-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Frisk Feet</h1>
<p style="font-size:24px;line-height: 25px;">“Dance is the hidden language of the soul of the body” <br/>
So here we provide you a chance to flash your individuality. <br/>
Rules: <br/>
Team Limit: Individual Participation <br/>
Number of rounds: 1 <br/>
Time limit: 2 minutes <br/>
Genre: Any Dance Form <br/>
General Rules : <br/>
• Participants are required to carry their tracks/music only in a CD or a
pen-drive. The track should be in .mp3/.wav format only. <br/>
• Teams/Participants must follow the time limits, failing to do so shall
lead to disqualification. <br/>
• In the event, if a routine is interrupted because of failure of
equipment, facilities, etc., then the participant(s) affected will be
permitted to restart the routine from the beginning. <br/>
• Any kind of fluid, flame, vehicle or live animals are not allowed on
stage. <br/>
• Obscenity of any kind is not allowed and will lead to immediate
disqualification. <br/>
• The decision of the concerned Judges and Faculty Coordinators shall
be final and binding. <br/>
• Live Music is not allowed. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="doodle-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Doodle/Cartooning/Sketching</h1>
<p style="font-size:24px;line-height: 25px;">
Magic is something you make, while, Art is something you uniquely create. <br/>
A head full of doodles, mind filled with universe of cartoons, let paper be the canvas and sketch be your medium to manifest it all to the audience. <br/>
Team Limit: Individual Participation <br/>
Number of rounds: 1 <br/>
General Rules: <br/>
Theme- One World , One Beat <br/>
Participants must carry their own material. A4 sized sheets will be provided on the spot. <br/>
No references are allowed to be carried by the participants. <br/>
The theme must strictly be followed by the participants. <br/>
The decision of the judges will be considered final and binding in all cases. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="fusionfunk-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Fusion Funk</h1>
<p style="font-size:24px;line-height: 25px;">
“Dancing is an art, <br/>
The floor is your canvas. <br/>
You are the brush, <br/>
And whatever you create is a direct reflection of your heart!” <br/>
With Fusion Funk, you, along with your troop have a chance to create <br/>
an aura so strong that people enter a trance too deep to recover from. <br/>
RULES: <br/>
Team Limit: 4-8 Member Team <br/>
Number of rounds: 1 <br/>
Time limit: Max 7 min (6min (Performance) + 1min (setting/clearance)) <br/>
General Rules: <br/>
• All dance forms are allowed. <br/>
• At any point of time during the performance, the presence of at least
3 members of the team, on the stage, is mandatory. <br/>
• All costumes and props are to be arranged by the participants <br/>
• Any kind of fluids, flames or heavy objects are strictly prohibited. <br/>
• Participants are required to carry their tracks/music only in a CD or a
pen-drive. The track should be in .mp3/.wav format only. <br/>
• Any kind of obscenity will lead to immediate disqualification. <br/>
• The decision of the judges will be final and binding in all cases. <br/>
•The participating team would be responsible for any interruptions due
to faulty music and shall not be given another chance.•Marks shall be deducted for exceeding the time limit. <br/>
•No repetiton of participant is allowed for more than one team for the
same event. <br/>
•Every student should carry their college ID card. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="brushoff-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Brush Off</h1>
<p style="font-size:24px;line-height: 25px;">
Painting is the language of unspoken yet encapsulating emotions. <br/>
Painting is an infinitely minute part if an artist's personality. Be all set, get hold of your brushes, gather your paints and paint your visionary paradise and let the world bask in its glory. <br/>
Team Limit: Individual Participation <br/>
Number of rounds: 1 <br/>
General Rules: <br/>
• The theme for the competition will be announced on 26th March 2018. <br/>
• Participants need to carry their own coloring material (paints and brushes only) <br/>
A2 sized sheets will be provided on the spot. <br/>
No references are allowed to be carried by the participants. <br/>
The theme must strictly be followed by the participants. <br/>
The decision made by the judges will be considered final and binding in all cases. <br/>
The participant must reach the venue 10 minutes before the starting time . Late entries will not be entertained <br/>
</p>
<!-- BTW If you're here for the registration button, it is known as "Liquid buttons" Check them out!! -->
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="lens-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Lens it up</h1>
<p style="font-size:24px;line-height: 25px;">
“In photography ,there is a reality so subtle that it becomes more real than reality.” <br/>
Taking pictures has the capability to alter the emotions and trigger memories of a human being. <br/> We celebrate photography as an art and provide you the opportunity to compete with the best in this genre and showcase your talent. <br/>
Rules : <br/>
Team Limit: Individual Participation <br/>
General Rules: <br/>
The participants will be provided with a topic, on the spot . <br/>
They will have to submit a relevant photograph related to the topic they choose within the stipulated time. <br/>
Participates should click the photographs with date and time stamp mode set on their respective cameras. <br/>
Photos must be clicked via DSLR. <br/>
Only Non edited photos will be allowed. <br/>
Earlier clicked photographs will be discarded and will not be accepted as the part of the competition. <br/>
The decision of the judges will be considered final and binding in all cases. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="robo-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Robo Race</h1>
<p style="font-size:24px;line-height: 25px;">
“More speed, more power with minimum time”. <br/>
Think your robot can overcome any obstacle big or small in the least of time. If so get it on the track and let the game begin and bear in mind that maximizing RPM does not make you winner but winners are those who have good presence of mind, sharpness and practice. <br/>
ROBOT SPECIFICATIONS: <br/>
1) The maximum dimension of the robot can be 30 x 30 x 30cm (l x b x w).
2) The robot may be wired or wireless.
3) The length of the wire (for wired bots) should be long enough to cover the whole track and wire should remain slack during the complete run.
4) Max weight must not exceed 3 kg.
5) The power supply will be provided maximum up to 24 Volt and it should be on board.
6) Ready-made toy car are not allowed.
Rules: <br/>
Team Limit: Individual Participation
Number of rounds: 1
General Rules: <br/>
This is racing event so fastest and most balanced robot will win.
Robot should be as per the given specifications.
Each team can have maximum 2 members.
There is no entry fees for competition.
The robot should not damage the arena.
The robot must not leave behind any of its parts during the run; else it will result in disqualification.
Unethical behavior could lead to disqualification. Faculty-coordinators have all the rights to take final decision for any matter during the event.
Judge's decision will be considered final.
Certificates will be given to all the participants. <br/>
ARENA: <br/>
1) Track width is 40 cm.
2) The track surface and course line may have unevenness.
3) There might be abrupt angles, but these will not exceed 30 degrees.
4) There will be certain obstacles in the race track which will try to slow down the robot.
5) The design and size of the obstacles may vary.
6) Major changes will be notified on the website.
7) Arena will consist of different kind of hurdles like speed breakers, marble pit, rotating disc, curve ramp, seesaw, etc.
<br/>
PHASES IN THE EVENT: <br/>
1) The competition is based on time trail system.
2) Three hand touches are allowed with penalty of 10 seconds. For each hand touch, penalty time will be added further too overall time required by robot for completion of specified round. <br/>
3) If any of the robots starts off before start up call, the counter would be restated and the machines will get a second chance. If repeated again then team will be disqualified. <br/>
4) Your robot must be ready when call is made for your team. <br/>
5) Machine must not contain any readymade kits, pneumatic & hydraulic systems, IC engines. <br/>
6) Decision about your robot will be taken by the organizers. <br/>
7) All about final round will be notified on the final day. <br/>
BONUS POINTS: <br/>
You will be given several opportunities while racing to gain bonus point and it will declare on the spot of event.
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="auto-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Auto & Tech Quiz</h1>
<p style="font-size:24px;line-height: 25px;">
“Words can be the most powerful weapon in any kind of scenario” <br/>
Rules: <br/>
Team Limit: Individual Participation <br/>
No. of Rounds: 3 <br/>
General Rules: <br/>
Round 1: It is basically a Pen and Paper Round. It consists of 30 questions related to automobile and time given to students is around 25 minutes. <br/>The students who clear this round will go to the next round. <br/>
Round 2: It is a picture perception round. In this round students have to identify the pictures related to the automobile and Tech companies. <br/>
Round 3: It is quiz based round the students who clear the picture perception round will be eligible for this round. <br/>It is a final round. <br/>Winners are decided from this round. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="pic-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Pictionary</h1>
<p style="font-size:24px;line-height: 25px;">
Do you trust your partner’s drawing skills? Go Ahead. We have the perfect game for you. <br/>A guessing game in which players attempt to identify words from pictures drawn by other players. <br/>
<!-- All details here -->
Rules: <br/>
Team Limit: 2 <br/>
Number of rounds: 1 <br/>
General Rules:<br/>
A member will be presented with a chit of paper with the name of a movie on it. <br/>
He/She will try to draw anything related to the movie assigned. <br/>
The other partner must guess the correct name based on the drawing. <br/>
No verbal/written communication is allowed. <br/>
Failure to guess the exact name will lead to elimination. <br/>
The round shall continue until a winner emerges. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="jam-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">JAM</h1>
<p style="font-size:24px;line-height: 25px;">
Thought you were good enough at extempore? Here is where they prove you wrong. <br/>JAM is the teeth grinding, tongue twisting and wit testing event of public speaking. <br/>A game of laughs and a game where one can shine with not his/her teeth but his/her tongue! <br/>
Rules: <br/>
Team Limit: 5 <br/>
No. of rounds: 1 <br/>
General Rules: <br/>
The participant will be given a topic on the spot which he/she has to speak for 1 minute. <br/>
30 seconds for the motion and 30 seconds against the motion <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="minute-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Minute to Win it</h1>
<p style="font-size:24px;line-height: 25px;">
Participants in a team of 2 have to complete the given task in a minute. <br/>
The contestant is given two "lives" at the beginning of the game. The difficulty of the games progressively increase throughout the game. <br/>If time expires or the conditions of the game cannot be fulfilled (such as by the contestant exhausting any allotted attempts or committing a foul), the contestant loses a "life". <br/>If the contestant loses two of their "lives", the game ends. <br/>
Rules: <br/>
Team Limit: Individual Participation <br/>
Number of rounds: 3 <br/>
General Rules: <br/>
Round 1- <br/>
5 games per contestant. <br/>
As per the calculated points based on the game 30 contestants will be promoted to round 2. <br/>
Round 2- <br/>
3games per contestant <br/>
10 contestants qualify for the last round. <br/>
Round 3- <br/>
Given task is to be completed in the minimum time. <br/>
The top 2 contestants win. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="doubles-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Game of Doubles</h1>
<p style="font-size:24px;line-height: 25px;">
<!-- All details here -->
The team is given two "lives" at the beginning of the game. The difficulty of the games progressively increase throughout the game. <br/>If time expires or the conditions of the game cannot be fulfilled (such as by the team exhausting any allotted attempts or committing a foul), the contestant loses a "life". If the team loses two of their "lives", the game ends. <br/>
Rules: <br/>
Team Limit: 2 <br/>
Number of rounds: 2 <br/>
General Rules: <br/>
Round 1- <br/>
3 games per team. <br/>
As per the calculated points based on the game, 10 teams will be promoted to round 2. <br/>
Round 2- <br/>
1 game per team <br/>
Given task is to be completed in the minimum time. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="laser-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Laser Maze</h1>
<p style="font-size:24px;line-height: 25px;">
<!-- All details here -->
Get ready to fit into the shoes of some ultimate action heroes. Be it James Bond or the living legend Jackie Chan, they’ve all tamed the enthralling laser maze. <br/> Explore’18 proudly presents the in-house lasermaze where you will jump, crawl, kneel, bend or invent your very own move to navigate through the thrilling laser beams without breaking them. <br/>
Rules: <br/>
Team Limit: Individual Participation <br/>
Number of rounds: 2 <br/>
General Rules: <br/>
Round 1: <br/>
• There will be a buzzer at the starting and ending of the maze. Participants have to press that buzzer at both these points to record the starting and stopping time on their timers. <br/>
• The time between the two buzzers hit will be calculated. <br/>
• The starting and the finishing point will be same for both the rounds. <br/>
Penultimate Round: <br/>
• Participants with shortest time will be qualified for the next level. <br/>
• Breaking any of the beams will penalize the participant with time that shall be counted in the final score. <br/>
Ultimate Round: <br/>
• This would be the final level where only the short listed participants will battle. <br/>
• There would be an object kept on the other side of the maze. <br/>
• Participants have to navigate the maze, get the object and bring it back to the starting point without dropping the object or breaking the maze. <br/>
• Participant with the shortest time taken will be declared as the winner. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="mystery-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Mystery Room</h1>
<p style="font-size:24px;line-height: 25px;">
“Mystery is not a problem to be solved but a reality to be experienced” <br/>
Rules: <br/>
Team Limit: 4
Number of rounds: 1
General Rules: <br/>
The game will take place in a locked room. Pieces of scrap will be scattered across the room to make it messy. <br/>
The objective is to find the correct key/answer which will be hidden in the room within a given time limit of 3 minutes. <br/>
The team to find the solution/ key in the minimum time span, wins. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="bottle-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Bottle Flip Challenge</h1>
<p style="font-size:24px;line-height: 25px;">
<!-- All details here -->
Are you ready for the latest craze making a splash with youngsters around the world. The bottle-flip challenge urges the players to, well, flip a half-full water bottle so that it lands upright on a window sill, table, desk etc. <br/> Are you the ultimate flip bottle master? <br/>
Rules: <br/>
Team Limit: Individual participation <br/>
Number of rounds: 2 <br/>
General Rules: <br/>
Round 1- <br/>
Hold the bottle from its neck-and-cap area. <br/>
Out of 5 chances, the player to land 2 successful flips goes to the next round. <br/>
Round 2- <br/>
A player has to predict the number of chances to make 3 successful flips. <br/>
Completing the flips in predicted number, marks the winner. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="business-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Business Quiz</h1>
<p style="font-size:24px;line-height: 25px;">
“Never day-dream about success rather work for it steadily” <br/>
Explore Fest 2k18 brings to the doorstep of your genius mind a unique opportunity in form of B-Quiz to test the level of your knowledge in the domain of business , market ,stocks, finance, entrepreneurship ,etc . <br/>
Come be a part of a roller coaster quizzing experience that you never would have witnessed before! <br/>
Rules: <br/>
Team Limit: 2 <br/>
Number of rounds: 2 <br/>
General Rules: <br/>
Round 1: <br/>
It’ll be a paper-based round with multiple questions and each one carries 1mark (with no negative marking) <br/>
Prelims to be followed by finals featuring top 10 teams from the prelims. <br/>
Round 2: <br/>
The rules for this round will be disclosed on the spot. <br/></p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="logo-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Logo Quiz</h1>
<p style="font-size:24px;line-height: 25px;">
“Logo is the silent ambassador of any brand that comes into existence” <br/>
So you hate engineering? Big brands and cars rush down your adrenaline? <br/>You are not alone then. But that is not important, what important is how erudite you are in your field of passion. <br/>Projection Design Club proudly presents “Logo Quiz”. <br/>
Rules: <br/>
Team Limit: Individual Participation <br/>
No. of Rounds: 2 <br/>
General Rules: <br/>
Prelims round: <br/>
• It’ll be a paper-based round with multiple questions and each one carries 1mark with no negative <br/>
• A team of 2 is allowed to participate <br/>
• Top 10 teams will qualify for the final round <br/>
Mains <br/>
Rules for Mains round would be declared on the spot. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="ipl-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">IPL Auction & Sports Quiz</h1>
<p style="font-size:24px;line-height: 25px;">
“Where there is no struggle, there is no strength” <br/>
How many of you watched on enviously as who’s who of the country bid gazillions for the IPL teams and built a team from scratch, thinking you could do better? How many of you wanted to play Murli with bhajji, Rohit with Sehwag, or felt engaged at Ganguly’s exclusion, but lacked the billions needed? Well then don’t forget to take part in this unique event combining the passion of cricket with the guile of business. <br/>
Rules: <br/>
Team Limit: 3-4 <br/>
Number of rounds: 2 <br/>
General Rules: <br/>
Prelims: <br/>
This is a Quizzing round based on sports. 8 teams would be short-listed for the final round. <br/>
The winning teams would be at random allotted an IPL Team. <br/>
Finals: <br/>
Eight teams would be competing in this round. Each team would be allotted an IPL team at random and then they have to buy players in the auction to build a complete team. <br/>The details of the auction will be given after completion of the Prelims
Each Player has a certain number of points based on brand image, value, career performance etc. <br/>The aim is to collect maximum points in order to win!
</p>
<!-- Infinity Wars Rocks !!!! -->
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="chakravyuh-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Chakravyuh</h1>
<p style="font-size:24px;line-height: 25px;">
<!-- All details here -->
“Your heart is where your Treasure is, and You must find your Treasure in order to make Sense of Everything.” <br/>
Mystery , Sugar and Spice , these are the things that make up life. If you lust for logic and crave for crypts, we can assure you that this will be the most competitive Hunts of your lives. <br/>
Rules: <br/>
Team Limit: 2 <br/>
General Rules: <br/>
The team has to complete a series of challenges such as three legged race, solving riddles and performing the task to reach the final destination. <br/>
The team to complete the challenges first, wins. <br/>
Use of unfair means will lead to disqualification. <br/>
The participating team must reach the designated venue 10 minutes prior to the beginning of the event. Late entries shall not be entertained. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="spell-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Spell Bee</h1>
<p style="font-size:24px;line-height: 25px;">
Spell bee is a platform where contestants are asked to spell a broad selection of words, usually with a varying degree of difficulty. <br/>
Rules: <br/>
Team Limit: Individual Participation
Number of rounds: 3
General Rules: <br/>
Round 1: <br/>
In this round the participant needs to write down the words dictated. <br/>
20 Participants will be short listed for the second round. <br/>
Round 2: <br/>
Participants will be divided into 2 groups of 10 each. In this round the speller has to orally spell the words. <br/>
Each participant in the group would be given 5 words. Time given would be 30 seconds per word. <br/>
6 participants (3 from each group) who have spelled the most answers correctly will proceed for the final round. <br/>
Round 3: <br/>
In this round, words will be given and the participants have to press the buzzer to grab the chance to answer. <br/>
The participant who rings the buzzer first gets the opportunity to spell it. <br/>
This time, the speller will have to tell the meaning of the word (which can be in proximity of the original meaning) along with the spelling make then further make a sentence using that word. <br/>
If the word isn’t spelt correctly, you can’t make a sentence for it and also not tell it’s meaning. <br/>
Each word counts for 5 marks. <br/>
In case of tie, there will be tie breaker. <br/>
This will continue till the speller with most correct answers wins. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="pithoo-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Pithoo</h1>
<p style="font-size:24px;line-height: 25px;">
“Just play. Have fun. Enjoy the game! <br/>
Because games are not all about winning but about the effort put in and the experience worth counting.” <br/>
Rules: <br/>
Team Limit: 5 <br/>
General Rules: <br/>
It will be a knockout Tournament <br/>
One player tries to hit the stack of seven stones with a sponge ball. <br/>The other team tries to catch the ball, if they catch it after it has hit the pile and before it has bounced again, the first team loses. <br/>
The proper rules for the game will be informed on the spot. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>
</div>
</div>
<div id="modal-container" class="bollywood-container">
<div class="modal-background">
<div class="modal" style="padding: 15px;">
<h1 style="font-size:50px;">Bollywood Battle</h1>
<p style="font-size:24px;line-height: 25px;">
It is a fun filled quiz revolving around movies and songs inviting participation in teams of two. <br/>If you do manage to solve them all you are officially a movie nerd for sure. We’re not kidding, you’ll be a geek. <br/>Seriously, solving the whole thing should be near impossible as there are some really tricky ones. <br/>
Rules: <br/>
Team Limit: 2 <br/>
Number of rounds: 3 <br/>
General Rules: <br/>
First Round– <br/>
It will be a knockout round. <br/>
A group of 10 teams will have to sing songs like a normal game of antakshari. <br/>
The first 8 teams to be unable to sing, get eliminated. <br/>
A total of 10 teams qualify into the penultimate round. <br/>
Penultimate Round – <br/>
A team to two qualifying teams will be presented with a line from a random song. <br/>
The team to guess the maximum number of songs and tell its EXACT NAME, qualify for the final round. <br/>
A total of 5 teams qualify for the final round <br/>
Final Round– <br/>
Each team will be shown a clipping from a movie. <br/>
The team must guess the exact name of the movie and sing a song of that movie. <br/>
The team to score the maximum counts, wins. <br/>
The judgment shall be considered final and unquestionable at any stage. <br/>
</p>
<svg class="modal-svg" xmlns="https://www.w3.org/2000/svg" width="100%" height="100%" preserveAspectRatio="none">
<rect x="0" y="0" fill="none" width="100%" height="100%" rx="3" ry="3"></rect>
</svg>
</div>