-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
1386 lines (1353 loc) · 54.6 KB
/
index.html
File metadata and controls
1386 lines (1353 loc) · 54.6 KB
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" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="google-site-verification" content="7rtO4UnpBpfKtEVzcuxzxGsxfksjCvzgzW5B2PLBjKA" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="IGNITE TECHFEST 2020 - NMIMS NAVI MUMBAI" />
<meta name="keywords"
content="NMIMS, ignite, techfest, Navi Mumbai, NMIMS Navi Mumbai,IGNITE, nmignite, nmignite.com, www.nmignite.com, ignite nmims, IGNITE-2020, ignite 2020,ignite2020" />
<title>IGNITE 2020</title>
<link rel="icon" href="SVGS/logo.svg" type="image/icon" />
<link href="https://fonts.googleapis.com/css?family=Quicksand:500,700,900|Montserrat&display=swap" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="css/base.css" />
<link rel="stylesheet" type="text/css" href="css/demo2.css" />
<link rel="stylesheet" type="text/css" href="css/count.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css" />
<link rel="stylesheet" href="css/styles.css" />
<script>
document.documentElement.className = "js";
var supportsCssVars = function () {
var e,
t = document.createElement("style");
return (
(t.innerHTML = "root: { --tmp-var: bold; }"),
document.head.appendChild(t),
(e = !!(
window.CSS &&
window.CSS.supports &&
window.CSS.supports("font-weight", "var(--tmp-var)")
)),
t.parentNode.removeChild(t),
e
);
};
supportsCssVars() ||
alert(
"Please view this demo in a modern browser that supports CSS Variables."
);
</script>
</head>
<div class="logoclass">
<a target="_blank" href="https://nmimsnavimumbai.org/" rel="noreferrer">
<img class="logoclass" src="img/campuslogo.png" alt="campus-logo" />
</a>
</div>
<body class="demo-2 loading">
<main>
<section class=" main-page">
<div class="message"></div>
<div class="content">
<div class="glitch">
<div class="glitch__img"></div>
<div class="glitch__img"></div>
<div class="glitch__img"></div>
<div class="glitch__img"></div>
<div class="glitch__img"></div>
</div>
</div>
</section>
<section class=" count-down">
<div class="mainshit" id="mainshit">
<ul>
<li>We're Live!</li>
</ul>
<div class="wow bounceInUp ready">
Are
</div>
<div class="wow bounceInUp ready">
You
</div>
<div class="wow bounceInUp ready">
Ready?
</div>
</div>
</section>
<section class=" about ">
<h1 style="margin-top: 30vh;">ABOUT_</h1>
<!-- <img class="aboutitle" src="img/about.svg" alt="About"> -->
<span>
Welcome to IGNITE- The Tech Fest 2020.
IGNITE is the annual technical festival of NMIMS, Navi Mumbai. Started in the year 2019 with
the aim to give a platform for the technologies of future and also to have a time of their lives amidst the
perfect blend of amusement and illuminations for a better tomorrow .
</span>
<span>
This year IGNITE 2020 is everything that you would want it to be with events of great fun and learning. The fest
shall take place from 6th to 7th of March 2020 at the extravagant campus of NMIMS, Navi Mumbai. With loads of
exciting and engaging events in the house, IGNITE 2020 promises you to be even grander, greater and glorious
than even the previous edition.
</span>
<span>
So grab your squad of friends, mark your calendars and get set go for IGNITE 2020! </span>
</section>
<section id="cvents" class=" events">
<!-- <img class="eventstitle" src="img/events.svg" alt="About"> -->
<h1><strong>EVENTS_</strong></h1>
<div id="reg" class="butt">
<a target="_blank" href="http://register.nmignite.com" rel="noreferrer">
<button> <i class="fas fa-user-plus"></i>
Register Now!
</button>
</a>
</div>
<div class="butt">
<a href="./Final_Brochure.pdf" download="IGNITE-2020 BROCHURE">
<button><i class="fas fa-download"></i> Download Brochure</button>
</a>
</div>
<div class="container">
<div id="c1" class="card wow bounceInUp">
<a class="card_button" href="#popup1">
<img class="logoclass" src="Events/SVG/Treasure_map.svg" alt="Avatar" style="width:60%" />
<div class="contain">
<span>Treasure Hunt</span>
</div>
</a>
</div>
<div id="c2" class="card wow bounceInUp">
<a class="card_button" href="#popup2">
<img class="logoclass" src="compress/crane_1-min.png" alt="Avatar" style="width:60%" />
<div class="contain">
<span>Crane It</span>
</div>
</a>
</div>
<div id="c3" class="card wow bounceInUp">
<a class="card_button" href="#popup3">
<img class="logoclass" src="compress/nerf_1-min.png" alt="Avatar" style="width:60%" />
<div class="contain">
<span>Aim Down Sites</span>
</div>
</a>
</div>
<div id="c4" class="card wow bounceInUp" style="overflow: hidden;">
<a class="card_button" href="#popup4">
<img class="logoclass" src="compress/laserroom_1-min.png" alt="Avatar" style="width: 75%; " />
<div class="contain">
<span>Laser Room</span>
</div>
</a>
</div>
<div id="c5" class="card wow bounceInUp">
<a class="card_button" href="#popup5">
<img class="logoclass" src="compress/mystery_2-min.png" alt="Avatar" style="width:60%" />
<div class="contain">
<span>Crack The Code</span>
</div>
</a>
</div>
<div id="c6" class="card wow bounceInUp">
<a class="card_button" href="#popup6">
<img class="logoclass" src="compress/robot_1-min.png" alt="Avatar" style="width:60%" />
<div class="contain">
<span>Robo Football</span>
</div>
</a>
</div>
<div id="c7" class="card wow bounceInUp">
<a class="card_button" href="#popup7">
<img class="logoclass" src="Events/SVG/jenga.svg" alt="Avatar" style="width:50%" />
<div class="contain">
<span>3D Jenga</span>
</div>
</a>
</div>
<div id="c8" class="card wow bounceInUp">
<a class="card_button" href="#popup8">
<img class="logoclass" src="compress/cube_1-min.png" alt="Avatar" style="width:50%" />
<div class="contain">
<span>Rubix</span>
</div>
</a>
</div>
<div id="c9" class="card wow bounceInUp">
<a class="card_button" href="#popup9">
<img class="logoclass" src="compress/camera-min.png" alt="Avatar" style="width:50%" />
<div class="contain">
<span>Short Film Making</span>
</div>
</a>
</div>
<div id="c10" class="card wow bounceInUp">
<a class="card_button" href="#popup10">
<img class="logoclass" src="compress/me.png" alt="Avatar" style="width:50%" />
<div class="contain">
<span>Memonia</span>
</div>
</a>
</div>
<div id="c11" class="card wow bounceInUp">
<a class="card_button" href="#popup11">
<img class="logoclass" src="Events/SVG/Connect_four_game.svg" alt="Avatar" style="width:60%" />
<div class="contain">
<span>Connect 4</span>
</div>
</a>
</div>
<div id="c12" class="card wow bounceInUp">
<a class="card_button" href="#popup12">
<img class="logoclass" src="compress/speaker-min.png" alt="Avatar" style="width:50%" />
<div class="contain">
<span>Speaker Sessions</span>
</div>
</a>
</div>
<div id="c13" class="card wow bounceInUp">
<a class="card_button" href="#popup13">
<img class="logoclass" src="compress/code_1-min.png" alt="Avatar" style="width:70%" />
<div class="contain">
<span>Code Frenzy</span>
</div>
</a>
</div>
<div id="c14" id="c1" class="card wow bounceInUp">
<a class="card_button" href="#popup14">
<img class="logoclass" src="compress/clash_royale-min.png" alt="Avatar" style="width:70%" />
<div class="contain">
<span>Clash Royale</span>
</div>
</a>
</div>
<div id="c15" class="card wow bounceInUp">
<a class="card_button" href="#popup15">
<img class="logoclass" src="compress/fifa_game-min.png" alt="Avatar" style="width:70%" />
<div class="contain">
<span>FIFA</span>
</div>
</a>
</div>
<div id="c16" class="card wow bounceInUp">
<a class="card_button" href="#popup16">
<img class="logoclass" src="compress/counter_strike-min.png" alt="Avatar" style="width:60%" />
<div class="contain">
<span>CS-GO</span>
</div>
</a>
</div>
<div id="c17" class="card wow bounceInUp">
<a class="card_button" href="#popup17">
<img class="logoclass" src="compress/pubg-min.png" alt="Avatar" style="width:50%" />
<div class="contain">
<span>PUBG <br />(Squad) </span>
</div>
</a>
</div>
<div id="c18" class="card wow bounceInUp">
<a class="card_button" href="#popup18">
<img class="logoclass" src="compress/glowcricket_1-min.png" alt="Avatar" style="width:40%" />
<div class="contain">
<span>React The Unreactive</span>
</div>
</a>
</div>
<div id="c19" class="card wow bounceInUp">
<a class="card_button" href="#popup19">
<img class="logoclass" src="compress/game-of-thrones-throne-silhouette-11.png" alt="Avatar"
style="width:70%" />
<div class="contain">
<span>GOT <br />Monopoly </span>
</div>
</a>
</div>
<div id="c20" class="card wow bounceInUp">
<a class="card_button" href="#popup20">
<img class="logoclass" src="compress/RCcar_1.png" alt="Avatar" style="width:80%" />
<div class="contain">
<span>Blind RC Racing </span>
</div>
</a>
</div>
<div id="c21" class="card wow bounceInUp">
<a class="card_button" href="#popup21">
<img class="logoclass" src="compress/exhibition_1-min.png" alt="Avatar" style="width:80%" />
<div class="contain">
<span>Project Exhibition</span>
</div>
</a>
</div>
<div id="c22" class="card wow bounceInUp">
<a class="card_button" href="#popup22">
<img class="logoclass" src="Events/SVG/Ludo_board.svg" alt="Avatar" style="width:60%" />
<div class="contain">
<span>Live Ludo</span>
</div>
</a>
</div>
</div>
<div class="butt">
<a href="#reg" rel="noreferrer">
<button>
Go to Register <i class="fas fa-arrow-up"></i>
</button>
</a>
</div>
<div id="popup1" class="overlay">
<div class="popup">
<div class="popup-container">
<a class="close" href="#c1">×</a>
<div class="content">
<h1>TREASURE HUNT</h1>
<div class="description">
<h2>Description</h2>
<span>Treasure hunt event is based on general knowledge questions and puzzle hunts, in which each
teams
will have to use their collective brainpower to solve clues which leads
to a location within walking distance, where players must find and use a vital piece of information
to
answer a question. This information could be words from a historical plaque, a series of numbers or
an address, a landmark, or any other unique item.
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 5</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Team : Rs. 250</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Goodies</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 2 :</strong> 2 P.M. to 5 P.M.</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup2" class="overlay">
<div class="popup">
<div class="popup-container">
<a class="close" href="#c2">×</a>
<div class="content">
<h1>CRANE IT</h1>
<div class="description">
<h2>Description</h2>
<span>Its a two player game where the Player1 drives the car through the obstacle course and Player2
helps Player1 to move ahead by removing cubes kept as obstacle by a crane. So young minds team up
with your friends and JUST CRANE IT !!!
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 2</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Team : Rs. 60</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Goodies</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup3" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c3">×</a>
<div class="content">
<h1>AIM DOWN SITES</h1>
<div class="description">
<h2>Description</h2>
<span>It will be a 4 versus 4 player, capture the flag team match.Match starts with each team on their
base with their flag. Other team has to stop the opponent by bursting their balloons and get the
flag of opponent and comeback to their base with the flag. The team which captures the flag first
wins. In case there is no team to grab the flag in 5 minutes. Team with maximum number of hits on
balloons win.
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 4</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Team : Rs. 400</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Goodies</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Closed!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup4" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c4">×</a>
<div class="content">
<h1>LASER ROOM</h1>
<div class="description">
<h2>Description</h2>
<span>You have to reach the end of the room without tripping any laser to attain the prize
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 1</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Person : Rs. 50</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Goodies</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup5" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c5">×</a>
<div class="content">
<h1>CRACK THE CODE</h1>
<div class="description">
<h2>Description</h2>
<span>In the event we start by entering the room it has hidden clues and when you combine all
hidden clues you get an answer that solves the mystery and you may get out of the room. Their are 2
rounds and 4 sets and each room is divided into 2 sets.
Once a person solves 2 sets he is out of the room.
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 5</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Team : Rs. 250</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>To be decided</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup6" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c6">×</a>
<div class="content">
<h1>ROBO FOOTBALL</h1>
<div class="description">
<h2>Description</h2>
<span>Participants will be playing Football by controlling the Robot with help of a remote. One who
scores more goals in the given time wins. If scores are equal then person who scores the next goal
wins.
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 1</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Person : Rs. 50</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Goodies</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup7" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c7">×</a>
<div class="content">
<h1>JENGA</h1>
<div class="description">
<h2>Description</h2>
<span>Jenga is played with 54 wooden blocks in with one or more persons in which one has to build
tower with these blocks ,once the tower has build one has to knock the blocks out from any level of
the tower except the level below the topmost level and the block removed has to place at the topmost
level of the tower. The game ends when the tower falls or if any piece falls from the tower. Winner
is the last person to remove and place a block successfully.
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 1</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Person : Rs. 50</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Goodies</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup8" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c8">×</a>
<div class="content">
<h1>RUBIX</h1>
<div class="description">
<h2>Description</h2>
<span>Solve it if you can.
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 1</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Person : Free</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Goodies</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup9" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c9">×</a>
<div class="content">
<h1>SHORT FILM MAKING</h1>
<div class="description">
<h2>Description</h2>
<span>Make a short Film to showcase your cinematography skills!
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 1</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Person : Free</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Goodies</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup10" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c10">×</a>
<div class="content">
<h1>MEMONIA</h1>
<div class="description">
<h2>Description</h2>
<span>This is a competition of creating memes based on the events going on during Ignite Tech Fest.
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 1</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Person : Free</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Goodies</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup11" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c11">×</a>
<div class="content">
<h1>CONNECT 4</h1>
<div class="description">
<h2>Description</h2>
<span>It is a 2 player game in which a a board contain 6 rows and 7 columns one player has to drop a
coloured coin in these rows and have to connect the 4 same coloured coin in a horizontal, vertical,
diagonal line the player who does it first wins the game </span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 1</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Person : Rs. 30</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Goodies</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Closed!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup12" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c12">×</a>
<div class="content">
<h1>SPEAKER SESSIONS</h1>
<div class="description">
<h2>Description</h2>
<span>Guest Lecture</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 1</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Person : Free</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>None</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Closed!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup13" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c13">×</a>
<div class="content">
<h1>CODE FRENZY</h1>
<div class="description">
<h2>Description</h2>
<span>Participants have to participate in pairs. The team of two will be assigned points as per their
performance after each round. There will be three rounds.
</span>
<span>Participants are to use Python programming language</span>
<h4>Rounds</h4>
<span>• Blind Coding & Debugging</span>
<span>• Code Swap</span>
<h4>Brief Description</h4>
<h5>Round 1 : Blind Coding & Debugging</h5>
<span>The duo is to choose who goes to code Blind and who Debugs, both are to solve problems parallelly
unable to contact each other or the outside world via internet.</span>
<h6>Blind Coding</h6>
<span>Coders are to code blind, they won't be able to see what they type!</span>
<h6>Debugging</h6>
<span>Classic debugging competition where you find and solve syntax and semantic errors!</span>
<h5>Round 2 : Code Swap</h5>
<span>The main showdown where you solve complex problem with your teammate, i.e. only after a time
limit, you swap positions with them! At a time, only one person works on the code, hurry up and solve
before you both run out of your time!</span>
<span>Thou shalt be blessed by the power of the Internet. Use it wisely!</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 2</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Team : Rs. 100</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Worth Rs. 5000</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 2 :</strong> 11 A.M. to 2 P.M.</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup14" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c14">×</a>
<div class="content">
<h1>CLASH ROYALE</h1>
<div class="description">
<h2>Description</h2>
<span>Clash Royale 1 vs 1 battles. Clash on! </span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 1</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Person : Free</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Goodies</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup15" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c15">×</a>
<div class="content">
<h1>FIFA</h1>
<div class="description">
<h2>Description</h2>
<span>FIFA 19 introduces the UEFA Champions League, UEFA Europa League and UEFA Super Cup
competitions to the game, after their licenses with Konami's Pro Evolution Soccer expired. The game
will have support for promotion and relegation between the Champions League and Europa League
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 1</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Person : Rs. 50</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Worth Rs. 5000</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">
<h2>Timings</h2>
<span><strong>Day 1 :</strong> Whole Day</span>
<span><strong>Day 2 :</strong> Whole Day</span>
</div>
<div class="status">
<h2>Registration Status</h2>
<span>Open!</span>
</div>
</div>
</div>
</div>
</div>
<div id="popup16" class="overlay">
<div class="popup">
<div class="popup-container">
<!--<h2 style="text-align:center; color:white;">TREASURE HUNT</h2>-->
<a class="close" href="#c16">×</a>
<div class="content">
<h1>CS-GO</h1>
<div class="description">
<h2>Description</h2>
<span>The game pits two teams against each other: the Terrorists and the Counter-Terrorists. Both
sides are tasked with eliminating the other while also completing separate objectives. The
Terrorists, depending on the game mode, must either plant the bomb or defend the hostages, while the
Counter-Terrorists must either prevent the bomb from being planted, defuse the bomb, or rescue the
hostages.
</span>
</div>
<div class="team">
<h2>Team Members</h2>
<span>Allowed number of team members : 5</span>
</div>
<div class="fees">
<h2>Registration fees</h2>
<span>Per Team : Rs. 300</span>
</div>
<div class="prize">
<h2>Prizes</h2>
<span>Worth Rs. 11000</span>
</div>
<div class="venue">
<h2>Venue</h2>
<span>To be Decided.</span>
</div>
<div class="timings">