-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventspg.html
1697 lines (1474 loc) · 67.1 KB
/
eventspg.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" class="js no-touch no-mobile skrollr skrollr-desktop gr__beta_megalith_co_in" style=""><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/preloader.css" />
<title>Events |Enkryptiaa 2018 | The Annual Fest of INFOCOM | GP Nagpur</title>
<script src = "jquery/particles.js"></script>
<link rel="shortcut icon" href="logo1.png">
<link href="./eventspg_files/css" rel="stylesheet">
<link rel="stylesheet" href="./eventspg_files/bootstrap.css">
<!-- some defalt style -->
<link href="./eventspg_files/bootstrap.min.css" rel="stylesheet">
<link href="./eventspg_files/material-kit.css" rel="stylesheet">
<link href="./eventspg_files/style.css" rel="stylesheet" type="text/css">
<link href="./eventspg_files/magnific-popup.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="./eventspg_files/font-awesome.min.css" type="text/css">
<link href="./eventspg_files/css(1)" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./eventspg_files/default.css">
<link rel="stylesheet" type="text/css" href="./eventspg_files/component.css">
<link href="css/social_bar.css" rel="stylesheet">
<script src="./eventspg_files/modernizr.custom.js"></script>
<!-- footer -->
<link href="./eventspg_files/footer-distributed-with-address-and-phones.css" rel="stylesheet">
<style type="text/css">
#canvas{
width:100%;
height:900px;
overflow: hidden;
position:absolute;
top:0;
left:0;
}
.canvas-wrap{
position:relative;
}
div.canvas-content{
position:relative;
z-index:2000;
color:#fff;
text-align:center;
padding-top:30px;
}
body,
html {
height: 100%
}
#particles-js canvas {
display: block;
vertical-align: bottom;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
opacity: 1;
-webkit-transition: opacity .8s ease, -webkit-transform 1.4s ease;
transition: opacity .8s ease, transform 1.4s ease
color: #fff;
background: linear-gradient(-45deg, #fdff00, rgba(253, 65, 65, 0.8), #fdb840, #A8FF00 );
background-size: 4000% 4000%;
-webkit-animation: Gradient 15s ease infinite;
-moz-animation: Gradient 15s ease infinite;
animation: Gradient 15s ease infinite;
}
@-webkit-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@-moz-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
#particles-js {
width: 100%;
height: 100%;
position: fixed;
z-index: -10;
top: 0;
left: 0
}
html, body{
height: 100%;
font-weight:500px;
}
body,.modal-content {
color: #fff;
background: linear-gradient(-45deg, #fdff00, rgba(253, 65, 65, 0.8), #fdb840, #A8FF00 );
background-size: 4000% 4000%;
-webkit-animation: Gradient 15s ease infinite;
-moz-animation: Gradient 15s ease infinite;
animation: Gradient 15s ease infinite;
}
@-webkit-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@-moz-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
.modal-content {
color: #fff;
background: linear-gradient(-45deg, #fdff00, rgba(253, 65, 65, 1), #fdb840, #A8FF00 );
background-size: 4000% 4000%;
-webkit-animation: Gradient 15s ease infinite;
-moz-animation: Gradient 15s ease infinite;
animation: Gradient 15s ease infinite;
}
@-webkit-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@-moz-keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
@keyframes Gradient {
0% {
background-position: 0% 50%
}
50% {
background-position: 100% 50%
}
100% {
background-position: 0% 50%
}
}
.main-nav {
background:#292c2f;
}
@media screen and (max-width: 1024px) {
.dropdown-menu {
display:block;
}
}
@media screen and (max-width: 480px) {
.card img {
max-width:40px;
}
.nav > li > a{
padding:10px 5px;
font-size:10px;
}
}
.ul{
font-weight:500;
}
h4{
padding-bottom:8px;
}
</style>
</head>
<body data-gr-c-s-loaded="true" style="">
<div id = "particles-js"></div>
<script type="text/javascript">
particlesJS("particles-js", {
"particles": {
"number": {
"value": 90,
"density": {
"enable": true,
"value_area": 800
}
},
"color": {
"value": "#ffffff"
},
"shape": {
"type": "edge",
"stroke": {
"width": 0,
"color": "#000000"
},
"polygon": {
"nb_sides": 5
},
"image": {
"src": "img/github.svg",
"width": 100,
"height": 100
}
},
"opacity": {
"value": 0.5,
"random": false,
"anim": {
"enable": false,
"speed": 1,
"opacity_min": 0.1,
"sync": false
}
},
"size": {
"value": 3,
"random": true,
"anim": {
"enable": false,
"speed": 40,
"size_min": 0.1,
"sync": false
}
},
"line_linked": {
"enable": false,
"distance": 150,
"color": "#ffffff",
"opacity": 0.4,
"width": 1
},
"move": {
"enable": true,
"speed": 6,
"direction": "none",
"random": false,
"straight": false,
"out_mode": "out",
"bounce": false,
"attract": {
"enable": false,
"rotateX": 600,
"rotateY": 1200
}
}
},
"interactivity": {
"detect_on": "canvas",
"events": {
"onhover": {
"enable": true,
"mode": "grab"
},
"onclick": {
"enable": true,
"mode": "push"
},
"resize": true
},
"modes": {
"grab": {
"distance": 400,
"line_linked": {
"opacity": 1
}
},
"bubble": {
"distance": 400,
"size": 40,
"duration": 2,
"opacity": 8,
"speed": 3
},
"repulse": {
"distance": 200,
"duration": 0.4
},
"push": {
"particles_nb": 4
},
"remove": {
"particles_nb": 2
}
}
},
"retina_detect": true
});
</script>
<!-- Navigation panel-->
<nav class="main-nav white stick-fixed js-transparent transparent">
<div class="full-wrapper relative clearfix">
<div class="nav-logo-wrap" style="margin-right:0px;"><a href="index.html" class="logo"><img src="logo1.png" style="width:45px;height:45px;" align="middle" alt="logomega"></a></div>
<div class="nav-logo-wrap"><a href="index.html" class="logo">Enkryptiaa<span class="higl">'18</span></a></div>
<span style="font-size:30px;cursor:pointer;float: right;margin-top:.8em; : " ><a id="openbtn1" class="openbtn" data-type="page-transition" href = "menu.html">☰</a></span>
</nav>
<!-- Event Section --> <!-- Event Section --> <!-- Event Section --> <!-- Event Section --> <!-- Event Section --> <!-- Event Section --> <!-- Event Section -->
<section style="padding-top:100px;">
<div class="container">
<h2 style="text-align:center;">Events </h2>
<div class="row grid cs-style-4" style="margin-bottom: 75px;">
<div class="col-md-4 col-sm-6 col-xs-12 tile" align="middle">
<figure>
<div>
<a data-toggle="modal" data-target="#myModal1" href="http://enkryptiaa.tk/eventspg#"><img src="Events/perfect.jpg" alt="Perfect Identifier">
</a>
</div>
<figcaption>
<h3 style=" font-size:25px;">Perfect Idenfier</h3>
<h5 style="color:#dd6264;font-size:16px;">Game for Movie Lovers</h5>
<a data-toggle="modal" data-target="#myModal1" href="http://enkryptiaa.tk/eventspg#">Take a look</a>
</figcaption>
</figure>
<h4>
Perfect Identifier
</h4>
</div>
<div class="col-md-4 col-xs-12 col-sm-6 tile" align="middle">
<figure>
<div><a data-toggle="modal" data-target="#myModal2" href="http://enkryptiaa.tk/eventspg#"><img src="Events/cid.jpg" alt="MOCK CID"></a></div>
<figcaption>
<h3 style=" font-size: 25px;">Mock CID</h3>
<h5 style="color:#dd6264;">Quest for Culprit</h5>
<a data-toggle="modal" data-target="#myModal2" href="http://enkryptiaa.tk/eventspg#">Take a look</a>
</figcaption>
</figure>
<h4>
Mock CID
</h4>
</div>
<div class="col-md-4 col-xs-12 col-sm-6 tile" align="middle">
<figure>
<div><a data-toggle="modal" data-target="#myModal3" href="http://enkryptiaa.tk/eventspg#"><img src="Events/code.jpg" alt="reverse coding"></a></div>
<figcaption>
<h3 style=" font-size: 25px;">Reverse Coding</h3>
<h5 style="color:#dd6264;">Battle of Programmers</h5>
<a data-toggle="modal" data-target="#myModal3" href="http://enkryptiaa.tk/eventspg#">Take a look</a>
</figcaption>
</figure>
<h4>
Reverse Coding
</h4>
</div>
<div class="col-md-4 col-xs-12 col-sm-6 tile" align="middle">
<figure>
<div><a data-toggle="modal" data-target="#myModal4" href="http://enkryptiaa.tk/eventspg#"><img src="Events/ppt.png" alt="technical ppt"></a></div>
<figcaption>
<h3 style=" font-size: 25px;">Paper Presentation</h3>
<h5 style="color:#dd6264;">Exhibit the artist inside</h5>
<a data-toggle="modal" data-target="#myModal4" href="http://enkryptiaa.tk/eventspg#">Take a look</a>
</figcaption>
</figure>
<h4>
Paper Presentation
</h4>
</div>
<div class="col-md-4 col-xs-12 col-sm-6 tile" align="middle">
<figure>
<div><a data-toggle="modal" data-target="#myModal5" href="http://enkryptiaa.tk/eventspg#"><img src="Events/cs.jpg" alt="Counter Strike"></a></div>
<figcaption>
<h3 style=" font-size: 25px;">Counter Strike</h3>
<h5 style="color:#dd6264;">Fight for Best </h5>
<a data-toggle="modal" data-target="#myModal5" href="http://enkryptiaa.tk/eventspg#">Take a look</a>
</figcaption>
</figure>
<h4>
Counter Strike
</h4>
</div>
<div class="col-md-4 col-xs-12 col-sm-6 tile" align="middle">
<figure>
<div><a data-toggle="modal" data-target="#myModal6" href="http://enkryptiaa.tk/eventspg#"><img src="Events/ffj.jpg" alt="Funk From Junk"></a></div>
<figcaption>
<h3 style=" font-size: 25px;">Funk From Junk</h3>
<h5 style="color:#dd6264;">Challenge your Creativity</h5>
<a data-toggle="modal" data-target="#myModal6" href="http://enkryptiaa.tk/eventspg#">Take a look</a>
</figcaption>
</figure>
<h4>
Funk From Junk
</h4>
</div>
<div class="col-md-4 col-xs-12 col-sm-6 tile" align="middle">
<figure>
<div><a data-toggle="modal" data-target="#myModal60" href="http://enkryptiaa.tk/eventspg#"><img src="Events/smk.jpg" alt="Funk From Junk"></a></div>
<figcaption>
<h3 style=" font-size: 25px;">Smack Down</h3>
<h5 style="color:#dd6264;">Battle of Gamers</h5>
<a data-toggle="modal" data-target="#myModal60" href="http://enkryptiaa.tk/eventspg#">Take a look</a>
</figcaption>
</figure>
<h4>
Smack Down
</h4>
</div>
<div class="col-md-4 col-xs-12 col-sm-6 tile" align="middle">
<figure>
<div><a data-toggle="modal" data-target="#myModal11" href="http://enkryptiaa.tk/eventspg#"><img src="Events/camp.jpg" alt="Campus Experia"></a></div>
<figcaption>
<h3 style=" font-size: 20px;">Campus Experia</h3>
<h5 style="color:#dd6264;">Rock the Campus</h5>
<a data-toggle="modal" data-target="#myModal61" href="http://enkryptiaa.tk/eventspg#">Take a look</a>
</figcaption>
</figure>
<h4>
Campus Experia
</h4>
</div>
<!-- <div class="col-md-4 col-xs-12 col-sm-6 tile" align="middle">
<figure>
<div><a data-toggle="modal" data-target="#myModal12" href="http://enkryptiaa.tk/eventspg#"><img src="Events/smk.jpg" alt="Smack Down"></a></div>
<figcaption>
<h3 style=" font-size: 25px;">Smack Down</h3>
<h5 style="color:#dd6264;">Battle of Gamers</h5>
<a data-toggle="modal" data-target="#myModal12" href="http://enkryptiaa.tk/eventspg#">Take a look</a>
</figcaption>
</figure>
<h4>
Smack Down
</h4>
</div>-->
</div>
</div>
</section>
<!-- footer --> <!-- footer --> <!-- footer --> <!-- footer --> <!-- footer --> <!-- footer --> <!-- footer --> <!-- footer --> <!-- footer --> <!-- footer --> <!-- footer --> <!-- footer -->
<footer class="footer-distributed">
<div class="" align = "center" style="">
<a href="http://enkryptiaa.tk/eventspg#" class="logo"><img src="logo1.png" style="width:45px;height:45px;" align="middle" alt="enkryptiaa"></a>
<p class="footer-links">
INFOCOM<br>
GOVERNMENT POLYTECHNIC
<br>
NAGPUR
</p>
</div>
</footer>
<!-- Model --> <!-- Model --> <!-- Model --> <!-- Model --> <!-- Model --> <!-- Model --> <!-- Model --> <!-- Model -->
<div class="modal fade" id="myModal1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel1" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="card card-nav-tabs modal-content">
<div class="header header-success">
<!-- colors: "header-primary", "header-info", "header-success", "header-warning", "header-danger" -->
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<ul class="nav nav-tabs" data-tabs="tabs">
<li class="">
<img class="stack__img" style="max-width: 50px;" src="Events/perfect.jpg" alt="Perfect Identifier">
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#introduction1" data-toggle="tab" aria-expanded="false">
Infomation
</a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#format1" data-toggle="tab" aria-expanded="false">
Judging Criteria
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#rules1" data-toggle="tab" aria-expanded="false">
Rules & Fee
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#problem1" data-toggle="tab" aria-expanded="false">
Contact
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="#reg1" data-toggle="tab" aria-expanded="false">
Register
<div class="ripple-container"></div></a>
</li>
<li class="">
<a data-dismiss = "modal" data-toggle="tab" aria-expanded="false">
Close
<div class="ripple-container"></div></a>
</li>
<!--
<li class="">
<a href="#contacts1" data-toggle="tab" aria-expanded="false">
Contacts
<div class="ripple-container"></div></a>
</li>
<li class="active">
<a href="#faqs1" data-toggle="tab" aria-expanded="true">
FAQs
<div class="ripple-container"></div></a>
</li>
-->
</ul>
</div>
</div>
</div>
<div class="content">
<div class="tab-content">
<div class="tab-pane active" id="introduction1">
<p> This one’s for the movie buffs. All those times you spent watching your beloved movies will finally pay off. This is the opportunity to showcase your skills.Be prepared to face an arsenal of movie related questions where you’ll have to predict names of movies based on given hints.Unleash your creativity further and create a parody of a movie scene. Don’t be afraid of being weird. Ordinary is always boring.Lights. Camera. Action. !</p>
</div>
<div class="tab-pane" id="format1">
<p style="padding-top: 10px;">
<ul style="list-style-type: square;margin-left: 15px;font-weight:500;">
<li>Clarity and accuracy</li>
<li>Spontaniety</li>
<li>Creativity </li>
<li>Acting</li>
<li>Humour and overall impact</li>
</ul>
</p>
</div>
<div class="tab-pane" id="rules1">
<ul style="list-style-type: square;margin-left: 15px;font-weight:500;">
<li>The event will be conducted in rounds:</li>
<ul style="margin-left: 10px; padding-left:10px;">
<li>First Round : Preliminary round which consists of a Quiz based on Movies, Series and Shows .</li>
<li>Rest of rounds are Suprise rounds.</li>
</ul>
<li>Teams must consist of a minimum of 2 participants.</li>
<li>Use of mobile or any reference is strictly prohibited and will lead to disqualification.
</li>
<li>The decision of judges shall be final and binding.</li>
<li> Entry Fee : 100 INR</li>
</ul>
</div>
<div class="tab-pane" id="problem1">
<ul style="list-style-type: square;">
<li style="list-style-type:none;font-weight:500;">
Event Head
</li>
<ol style="list-style-type: square;">
<li><b>Afsha saiyed</b> </li>
<li><b>+91 7030109596</b> </li>
</ol>
<ol style="list-style-type: square;">
<li><b>Manjiri Butolia</b> </li>
<li><b>+91 7775058940</b> </li>
</ol>
</ul>
</div>
<div class="tab-pane" id="reg1">
<p style="padding-top: 10px;">
<a href = "https://goo.gl/forms/4wa8kClrYo1m1Xko1">Click here.</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Related demos -->
<div class="modal fade" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel1" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="card card-nav-tabs modal-content">
<div class="header header-success">
<!-- colors: "header-primary", "header-info", "header-success", "header-warning", "header-danger" -->
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<ul class="nav nav-tabs" data-tabs="tabs">
<li class="">
<img class="stack__img" style="max-width: 50px;" src="Events/cid.jpg" alt="Image">
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#introduction2" data-toggle="tab" aria-expanded="false">
Information
</a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#format2" data-toggle="tab" aria-expanded="false">
Problem statement
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#rules2" data-toggle="tab" aria-expanded="false">
Rules & Fee
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#prize2" data-toggle="tab" aria-expanded="false">
Contact
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="#reg2" data-toggle="tab" aria-expanded="false">
Register
<div class="ripple-container"></div></a>
</li>
<li>
<a data-dismiss = "modal" data-toggle = "tab" aria-expanded = "false">
Close</a>
<div class="ripple-container"></div>
</li>
</ul>
</div>
</div>
</div>
<div class="content">
<div class="tab-content">
<div class="tab-pane active" id="introduction2">
<p>
It is on-campus murder story. Have multiple participating teams. There are clues tracing back to the murder on the campus. The clues lead to witnesses and the one who finds out the real murderer first wins!
clues are Spread around the campus, along with dummies acting as dead bodies, and some volunteers act as witnesses.
</p>
</div>
<div class="tab-pane" id="format2">
<p>
Solve the case, perform the
tasks and find the Murderer.
</p>
</div>
<div class="tab-pane" id="rules2">
<ul style="list-style-type: square;margin-left: 15px;">
<li>Each team shall comprise of minimum 3 and max. 4 Participants only.</li>
<li>Participants can form teams from different branches/ college/ university/ institute.</li>
<li>Participants will have to solve cases with the help of clues and tasks.
(similar to Treasure Hunt)</li>
<li>Use of cell phones or any other device for communication is strictly
prohibited.
</li>
<li> No two teams must have any common member.</li>
<li>No team shall try to communicate with any other team or take any help
from the volunteers.
</li>
<li>The decisions of the organising committee will be final and binding.
Management shall not be held responsible for any kind of injury
caused in the course of this event.</li>
<li>Use of expletives or aggressive behaviour will result in immediate
disqualification.</li>
<li>.The Organizing committee reserves the right to change the venue, time
and rules, if desired.</li>
<li> Entry Fee : 200 INR</li>
</ul>
</div>
<div class="tab-pane" id="prize2">
<ul style="list-style-type: square;">
<li style="list-style-type:none;font-weight:500;">
Event Head
</li>
<ol style="list-style-type: square;">
<li><b>Aboli Paighan</b> </li>
<li><b>+91 8669087110</b> </li>
</ol>
</ul>
</div>
<div class="tab-pane" id="reg2">
<p style="padding-top: 10px;">
<a href = "https://goo.gl/forms/facc7TwT0YI5lyg93" target = "_blank">Click here.</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="myModal3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel1" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="card card-nav-tabs modal-content">
<div class="header header-success">
<!-- colors: "header-primary", "header-info", "header-success", "header-warning", "header-danger" -->
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<ul class="nav nav-tabs" data-tabs="tabs">
<li class="">
<img class="stack__img" style="max-width: 50px;" src="Events/code.jpg" alt="Image">
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#introduction3" data-toggle="tab" aria-expanded="false">
Infomation
</a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#format3" data-toggle="tab" aria-expanded="false">
Structure
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#rules3" data-toggle="tab" aria-expanded="false">
Rules & Fee
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#prize3" data-toggle="tab" aria-expanded="false">
Contact
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="#reg3" data-toggle="tab" aria-expanded="false">
Register
<div class="ripple-container"></div></a>
</li>
<li>
<a data-dismiss = "modal" data-toggle = "tab" aria-expanded = "false">
Close</a>
<div class="ripple-container"></div>
</li>
</ul>
</div>
</div>
</div>
<div class="content">
<div class="tab-content">
<div class="tab-pane active" id="introduction3">
<p style="padding-top: 10px;">
Given some sequence of steps, writing a code and getting the output is pretty easy! Want to try a reverse way? If given some input and output, can you find the logic and sequence? Focusing less on concepts, all you need is your logical skill to decipher this "Black Box". Reverse Coding is a logical event which tests your basic logical skills along with pattern analysis and recognition as you play with the code. So, get ready to reverse code in Enkryptiaa '18!
</p>
</div>
<div class="tab-pane" id="format3">
<p style="padding-top: 10px;">
<!-- -->
<ul style="list-style-type: square;">
<li style="list-style-type:none;">
There are Three Rounds
</li>
<ol style="list-style-type: square;">
<li><b>Written MCQ test</b> </li>
<li><b>Logic Round</b> </li>
<li><b>Decipher and Code Round</b> </li>
</ol>
<li>Logic round consists of Logical questions which can be solved by coding.</li>
<li>In the Decipher and coding round, the participants have to write the code for pattern that maps input to output.</li>
</ul>
</p>
</div>
<div class="tab-pane" id="rules3">
<ul style="list-style-type: square;margin-left: 15px;">
<li>A maximum of 2 candidates pursuing undergraduate program at their institution are allowed per team.</li>
<li>All the participants should bring their receipt and valid I-cards while coming for the contest. A participant without an I-card will NOT be allowed for the contest and the respective team will be disqualified.</li>
<li>Marking scheme will be declared on spot.</li>
<li> Participants can form teams from different branches/ college/ university/ institute. </li>
<li> No two teams must have any common member. </li>
<li> The decision of the judges shall be final. Any coaster that violates the rule above or the spirit of the competition will be disqualified </li>
<li> Entry Fee : 80 INR</li>
</ul>
</div>
<div class="tab-pane" id="prize3">
<ul style="list-style-type: square;">
<li style="list-style-type:none;font-weight:500;">
Event Head
</li>
<ol style="list-style-type: square;">
<li><b>Harshraj Dhote</b> </li>
<li><b>+91 9420221905</b> </li>
</ol>
<ol style="list-style-type: square;">
<li><b>Abhinav Roy</b> </li>
<li><b>+91 8669087110</b> </li>
</ol>
</ul>
</div>
<div class="tab-pane" id="reg3">
<p style="padding-top: 10px;">
<a href = "https://goo.gl/forms/6PPOaRTPOvvuWGQj2">Click here.</a>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="myModal60" tabindex="-1" role="dialog" aria-labelledby="myModalLabel1" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="card card-nav-tabs modal-content">
<div class="header header-success">
<!-- colors: "header-primary", "header-info", "header-success", "header-warning", "header-danger" -->
<div class="nav-tabs-navigation">
<div class="nav-tabs-wrapper">
<ul class="nav nav-tabs" data-tabs="tabs">
<li class="">
<img class="stack__img" style="max-width: 50px;" src="Events/smk.jpg" alt="Image">
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#introduction30" data-toggle="tab" aria-expanded="false">
Infomation
</a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#format30" data-toggle="tab" aria-expanded="false">
Structure
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#rules30" data-toggle="tab" aria-expanded="false">
Rules & Fee
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="http://enkryptiaa.tk/eventspg#prize30" data-toggle="tab" aria-expanded="false">
Contact
<div class="ripple-container"></div></a>
</li>
<li class="">
<a href="#reg30" data-toggle="tab" aria-expanded="false">
Register
<div class="ripple-container"></div></a>
</li>
<li>
<a data-dismiss = "modal" data-toggle = "tab" aria-expanded = "false">
Close</a>
<div class="ripple-container"></div>
</li>
</ul>
</div>
</div>
</div>
<div class="content">
<div class="tab-content">
<div class="tab-pane active" id="introduction30">
<p style="padding-top: 10px;">
Smack Down is Lan Gaming Event where all the members from one team Fight against another team's members on Local Area Network.
</p>
</div>
<div class="tab-pane" id="format30">
<p style="padding-top: 10px;">
<!-- -->
Event Consists of four rounds
<li>Survival Round </li>
<li> Triple Threat Round
</li>
<li>First Blood Round</li>
<li>Final Round</li>
</p>
</div>
<div class="tab-pane" id="rules30">
<ul style="list-style-type: square;margin-left: 15px;">
<li>Event consist of multiple individual participants</li>
<li> The decision of the judges shall be final. Any coaster that violates the rule above or the spirit of the competition will be disqualified </li>
<li>Registration fee : 50 INR (per participant) </li>
</ul>
</div>
<div class="tab-pane" id="prize30">
<ul style="list-style-type: square;">
<li style="list-style-type:none;font-weight:500;">
Event Head
</li>
<ol style="list-style-type: square;">
<li><b>Sidhhant Thorat</b> </li>
<li><b>+91 97300 30983</b> </li>
</ol>
</ul>
</div>
<div class="tab-pane" id="reg30">
<p style="padding-top: 10px;">
<a href = "https://goo.gl/forms/9El6aWJzrf5s9CiE2">Click here.</a>
</p>
</div>