This repository was archived by the owner on Jun 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathshield.html
More file actions
899 lines (860 loc) · 33.2 KB
/
shield.html
File metadata and controls
899 lines (860 loc) · 33.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<title>Shield</title>
<link rel="stylesheet" type="text/css" href="assets/css/shieldeffects.css">
<link rel="stylesheet" type="text/css" href="assets/css/testeffect.css">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- <link rel="shortcut icon" href="../favicon.ico"> -->
<link rel="stylesheet" type="text/css" href="assets/css/default.css" />
<link rel="stylesheet" type="text/css" href="assets/css/component.css" />
<script src="assets/js/modernizr.custom.js"></script>
</head>
<body>
<!-- MODALS -->
<div class="md-modal md-effect-18" id="modal-1">
<div class="md-content">
<h3>Antakshari</h3>
<div class="modal_content">
<div class="main">
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Description</h2>
<p>Antakshari has been one of the most entertaining games from ages unknown. The fun and frolic, blended with melodious hummings, and peppered with notorious banters, is a sight to behold. It’s a clarion call to one and all to participate in the Symphony Antakshari, and make it a memorable affair.</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Rules</h2>
<ol>
<li>Event Category: One team per branch</li>
<li>Compulsory Participation: 2 students + 2 faculty per department (including SAHAS)</li>
<li>Rolling of participants is allowed.</li>
</ol>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<h4 id="branch">COMPS</h4>
<ol>
<li>Ruchi: 9920242254</li>
</ol>
<h4 id ="branch">IT</h4>
<ol>
<li>Drishti: 9324787527</li>
</ol>
<h4 id ="branch">EXTC</h4>
<ol>
<li>Dhruvi: 9930629455</li>
</ol>
<h4 id ="branch">ETRX</h4>
<ol>
<li>Neerav: 8879423733</li>
</ol>
<h4 id ="branch">MECH</h4>
<ol>
<li>Swastik: 9869817011</li>
</ol>
</li>
<!-- <li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<ol>
<li>Mechanical</li>
<li>Computers</li>
<li>IT</li>
<li>ETRX</li>
<li>EXTC</li>
<li>SAHAS</li>
</ol>
</li> -->
</ul>
</div>
</div>
<button class="md-close">Close</button>
</div>
</div>
<div class="md-modal md-effect-18" id="modal-2">
<div class="md-content">
<h3>Art</h3>
<div class="modal_content">
<div class="main">
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Description</h2>
<!-- <p style="font-weight: bold;">“Art isn't supposed to look nice; it is supposed to make you feel something.”</p>
<p style="text-align: right;">― Rainbow Rowell</p>
<br> -->
<p>They say that a painting can showcase numerous emotions, and it’s your chance to paint your heart out! Participate in the Symphony Shield Art Competition to emerge as the artistic branch of KJSCE! </p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Rules</h2>
<ol>
<li>Event category: Multiple team per branch</li>
<li>Compulsory participation: 1 drawing per branch.</li>
<li>Theme: Kaleidoscope of Ages. Theme is open to interpretation.</li>
<li>Minimum Size of the drawing: A4</li>
<li>The drawings should be submitted by 1st February, 2018.and to be collected within 2 weeks after Symphony.</li>
<li>1 person can submit maximum upto 2 drawings</li>
</ol>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<h4 id ="branch">COMPS</h4>
<ol>
<li>Shivanee: 8097806372</li>
</ol>
<h4 id ="branch">IT</h4>
<ol>
<li>Jyeshtha: 9167356748</li>
</ol>
<h4 id ="branch">EXTC</h4>
<ol>
<li>Arjun: 7678066756</li>
</ol>
<h4 id ="branch">ETRX</h4>
<ol>
<li>Dhruvish: 9167457581</li>
</ol>
<h4 id ="branch">MECH</h4>
<ol>
<li>Chirag: 9167936309</li>
</ol>
</li>
<!-- <li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<ol>
<li>Mechanical</li>
<li>Computers</li>
<li>IT</li>
<li>ETRX</li>
<li>EXTC</li>
<li>SAHAS</li>
</ol>
</li> -->
</ul>
</div>
</div>
<button class="md-close">Close</button>
</div>
</div>
<div class="md-modal md-effect-18" id="modal-3">
<div class="md-content">
<h3>Dance</h3>
<div class="modal_content">
<div class="main">
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Description</h2>
<!-- <p style="font-weight: bold;">“Dance is the hidden language of the soul” </p>
<p style="text-align: right;">― Martha Graham</p> -->
<p>Put in those extra yards, stretch yourselves to the limit, and move gracefully, to win the bragging rights at the Symphony Shield Dance. Will Comps defend their title, or is there a twist in the tale? Exhibit your fine moves, and take your branch closer to the finish line!</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Rules</h2>
<ol>
<li>Event Category: One team per branch</li>
<li>Participation compulsory from each year : 2 FYs, 2 SYs, 2 TYs are compulsory.</li>
<li>Number of Members per team: 7-15 members</li>
<li>Time limit → 5-12 mins</li>
<li>A face off which will consist of Solo performance of all branches together will happen at the end of all group performances.</li>
<li>Individual dance → 1 minute + All 5 branch individual performance together → 1 min.</li>
</ol>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<h4 id ="branch">COMPS</h4>
<ol>
<li>Lakshmi: 9833615877</li>
</ol>
<h4 id ="branch">IT</h4>
<ol>
<li>Viraj: 9821548766</li>
</ol>
<h4 id ="branch">EXTC</h4>
<ol>
<li>Anukriti: 9769657737</li>
</ol>
<h4 id ="branch">ETRX</h4>
<ol>
<li>Sunitha: 7506035790</li>
</ol>
<h4 id ="branch">MECH</h4>
<ol>
<li>Anand: 9029723681</li>
</ol>
</li>
<!-- <li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<ol>
<li>Mechanical</li>
<li>Computers</li>
<li>IT</li>
<li>ETRX</li>
<li>EXTC</li>
<li>SAHAS</li>
</ol>
</li> -->
</ul>
</div>
</div>
<button class="md-close">Close</button>
</div>
</div>
<div class="md-modal md-effect-18" id="modal-4">
<div class="md-content">
<h3>Debate</h3>
<div class="modal_content">
<div class="main">
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Description</h2>
<!-- <p style="font-weight: bold;">“Don't raise your voice, improve your argument."</p>
<p style="text-align: right;"> ― Desmond Tutu</p> -->
<p>It’s time to voice your ideas, since your opinion matters at the Symphony Shield Debate. So, come up with astute rebuttals to counter the exasperating farrago of distortions and misrepresentations and convince the House to believe in you! Let your words make the loudest noise!</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Rules</h2>
<ol>
<li>Event category: Multiple team per branch</li>
<li>Number of members per team: 6</li>
<li>Compulsory participation: One FE, SE, TE and BE.</li>
<li>Others can also participate, provided both the partners are from same branch. Therefore there can be any number of participants from one branch</li>
<li>Elimination rounds will be a week prior to Symphony.</li>
<li>Semis and Finals will be held during Symphony</li>
</ol>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<h4 id ="branch">COMPS</h4>
<ol>
<li>Avinash: 9619588201</li>
</ol>
<h4 id ="branch">IT</h4>
<ol>
<li>Niyati: 9833345097</li>
</ol>
<h4 id ="branch">EXTC</h4>
<ol>
<li>Leander: 7977120736</li>
</ol>
<h4 id ="branch">ETRX</h4>
<ol>
<li>Mansi: 8390416222</li>
</ol>
<h4 id ="branch">MECH</h4>
<ol>
<li>Hanoz: 9820637575</li>
</ol>
</li>
<!-- <li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<ol>
<li>Mechanical</li>
<li>Computers</li>
<li>IT</li>
<li>ETRX</li>
<li>EXTC</li>
<li>SAHAS</li>
</ol>
</li> -->
</ul>
</div>
</div>
<button class="md-close">Close</button>
</div>
</div>
<div class="md-modal md-effect-18" id="modal-5">
<div class="md-content">
<h3>Drama</h3>
<div class="modal_content">
<div class="main">
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Description</h2>
<!-- <p style="font-weight: bold;">“Act well your part; there all the honour lies.” </p>
<p style="text-align: right;">― Alexander Pope, An Essay on Man</p> -->
<p>Make the audience resonate with your emotions, and let them be enthralled by the depth of your acting. Celebrate the entire spectrum of emotions in its purest form. Compete in the Symphony Shield Drama, and lead your branch to glory!</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Rules</h2>
<ol>
<li>Event category: One team per branch</li>
<li>Number of members per team: 7-12 members</li>
<li>Compulsory participation: 2 from FY, SY and TY each</li>
<li>Time limit: Maximum 16 minutes which includes 1 minute for setup and clearance (inclusive).</li>
<li>Theme: Kaleidoscope of Ages. Theme is open to interpretation.</li>
<li>Three mics will be provided. Props will not be provided.</li>
<li>Only one non-participating assistance will be allowed at the music controlling console.</li>
<li>Use of props, script and music should be notified by 1st February 2018.</li>
<li>Illustrations are not allowed.</li>
</ol>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<h4 id ="branch">COMPS</h4>
<ol>
<li>Ninad: 9769360543</li>
</ol>
<h4 id ="branch">IT</h4>
<ol>
<li>Aman: 9619860086</li>
</ol>
<h4 id ="branch">EXTC</h4>
<ol>
<li>Surya: 9987016299</li>
</ol>
<h4 id ="branch">ETRX</h4>
<ol>
<li>Deep: 7303016866</li>
</ol>
<h4 id ="branch">MECH</h4>
<ol>
<li>Taher: 9967202029</li>
</ol>
</li>
<!-- <li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<ol>
<li>Mechanical</li>
<li>Computers</li>
<li>IT</li>
<li>ETRX</li>
<li>EXTC</li>
<li>SAHAS</li>
</ol>
</li> -->
</ul>
</div>
</div>
<button class="md-close">Close</button>
</div>
</div>
<div class="md-modal md-effect-18" id="modal-6">
<div class="md-content">
<h3>Music</h3>
<div class="modal_content">
<div class="main">
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Description</h2>
<!-- <p style="font-weight: bold;">“Ah, music. A magic beyond all we do here!” </p>
<p style="text-align: right;">― J.K. Rowling</p> -->
<p>Mesmerise and enchant the crowd by churning out a musical performance that will be etched in the history of Symphony. Give your branch one more reason to root for you, and make others swoon to your tunes.</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Rules</h2>
<ol>
<li>Event category: One team per branch</li>
<li>Number of members per team: 3-7. Rotation is allowed</li>
<li>Compulsory participation: A team can comprise of members from any year</li>
<li>Time limit: 20 minutes including sound check, instruments tuning etc.</li>
<li>Only basic mic, speakers and a drum kit will be provided to the participants. Amplifiers, instruments, etc, to be brought on your own.</li>
<li>Instrumental for 1 min is necessary</li>
</ol>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<h4 id ="branch">COMPS</h4>
<ol>
<li>Akshay: 7045413968</li>
</ol>
<h4 id ="branch">>IT</h4>
<ol>
<li>Dipen: 9833455766</li>
</ol>
<h4 id ="branch">EXTC</h4>
<ol>
<li>Vinayak: 8237289236</li>
</ol>
<h4 id ="branch">ETRX</h4>
<ol>
<li>Dhaval: 8369068700</li>
</ol>
<h4 id ="branch">MECH</h4>
<ol>
<li>Rishabh: 8291343328</li>
</ol>
</li>
<!-- <li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<ol>
<li>Mechanical</li>
<li>Computers</li>
<li>IT</li>
<li>ETRX</li>
<li>EXTC</li>
<li>SAHAS</li>
</ol>
</li> -->
</ul>
</div>
</div>
<button class="md-close">Close</button>
</div>
</div>
<div class="md-modal md-effect-18" id="modal-7">
<div class="md-content">
<h3>Photography</h3>
<div class="modal_content">
<div class="main">
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Description</h2>
<!-- <p style="font-weight: bold;">“The artist sees what others only catch a glimpse of.”</p>
<p style="text-align: right;">― Leonardo Da Vinci</p> -->
<p>A moment captured, is a moment glorified! A vision for detail, and the patience to wait for the moment, is the blend that makes a great photographer! Bring out the shutterbug in yourself at the Symphony Shield Photography, and let your cameras catch the moment in a flash!</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Rules</h2>
<ol>
<li>Event category: Multiple team per branch</li>
<li>Compulsory participation: 1 photo per branch per year.</li>
<li>The participants must get their own digital cameras. (Phone Cameras are allowed)</li>
<li>Theme will be disclosed on the day of the event.The photographs should be submitted on the end of the day itself.</li>
<li>No time stamps </li>
<li>Basic editing is allowed. (Only Contrast, Brightness and Saturation can be adjusted during post effects</li>
<li>Each photo should contain a caption of max 200 characters</li>
<li>1 person can submit maximum upto 2 photographs.</li>
</ol>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<h4 id ="branch">COMPS</h4>
<ol>
<li>Mihir: 8898391245</li>
</ol>
<h4 id ="branch">IT</h4>
<ol>
<li>Jash: 7506653513</li>
</ol>
<h4 id ="branch">EXTC</h4>
<ol>
<li>Praneeth: 9892309230</li>
</ol>
<h4 id ="branch">ETRX</h4>
<ol>
<li>Deep: 7303016866</li>
</ol>
<h4 id ="branch">MECH</h4>
<ol>
<li>Kunal: 8286482231</li>
</ol>
</li>
<!-- <li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<ol>
<li>Mechanical</li>
<li>Computers</li>
<li>IT</li>
<li>ETRX</li>
<li>EXTC</li>
<li>SAHAS</li>
</ol>
</li> -->
</ul>
</div>
</div>
<button class="md-close">Close</button>
</div>
</div>
<div class="md-modal md-effect-18" id="modal-8">
<div class="md-content">
<h3>Quiz</h3>
<div class="modal_content">
<div class="main">
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Description</h2>
<p>Tickle your brain cells, and help your branch move closer to ultimate glory by participating at the Symphony Shield Quiz. Battle it out, and showcase your wit to emerge as the winners. So, Tala laga diya jaaye?</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Rules</h2>
<ol>
<li>Event category: Multiple teams per branch</li>
<li>Number of members per team: 2</li>
<li>Compulsory participation: One FE, SE, TE and BE.</li>
<li>Others can also participate, provided both the partners are from same branch. Therefore there can be any number of participants from one branch.</li>
<li>Elimination will occur a week prior to Symphony. </li>
<li>Semis and Finals will happen on the day of Symphony.</li>
</ol>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<h4 id ="branch">COMPS</h4>
<ol>
<li>Rishik: 8888821113</li>
</ol>
<h4 id ="branch">IT</h4>
<ol>
<li>Stuti: 8108287952</li>
</ol>
<h4 id ="branch">EXTC</h4>
<ol>
<li>Aditi: 8275868906</li>
</ol>
<h4 id ="branch">ETRX</h4>
<ol>
<li>Chirayu: 9167266198</li>
</ol>
<h4 id ="branch">MECH</h4>
<ol>
<li>Kushal: 9833300715</li>
</ol>
</li>
<!-- <li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<ol>
<li>Mechanical</li>
<li>Computers</li>
<li>IT</li>
<li>ETRX</li>
<li>EXTC</li>
<li>SAHAS</li>
</ol>
</li> -->
</ul>
</div>
</div>
<button class="md-close">Close</button>
</div>
</div>
<div class="md-modal md-effect-18" id="modal-9">
<div class="md-content">
<h3>Jamboree</h3>
<div class="modal_content">
<div class="main">
<ul>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Description</h2>
<p>Explore the sprawling campus, unlock the tricky clues, and along with your Dr. Watson, embark on an exciting journey filled with many thrills and spills at the Symphony Jamboree to help your branch move closer to the lucrative Shield!</p>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Rules</h2>
<ol>
<li>Event Category: One team per Branch</li>
<li>Compulsory Participation: 2 FYs, 2 SYs and 1 TY each.</li>
<li>Team should contain : 6 members per team.</li>
<li>Rotation of participants is not allowed</li>
<li>The details of the event will be disclosed on the day.This event will start from Day 1 of Symphony and continue up to the Shield Closing.</li>
</ol>
</li>
<li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<h4 id ="branch">COMPS</h4>
<ol>
<li>Ruchi: 9920242254</li>
</ol>
<h4 id ="branch">IT</h4>
<ol>
<li>Harshita: 8652525236</li>
</ol>
<h4 id ="branch">EXTC</h4>
<ol>
<li>Sneha: 9969057763</li>
</ol>
<h4 id ="branch">ETRX</h4>
<ol>
<li>Neerav: 8879423733</li>
</ol>
<h4 id ="branch">MECH</h4>
<ol>
<li>Swastik: 9869817011</li>
</ol>
</li>
<!-- <li>
<input type="checkbox" checked>
<i></i>
<h2>Contact</h2>
<ol>
<li>Mechanical</li>
<li>Computers</li>
<li>IT</li>
<li>ETRX</li>
<li>EXTC</li>
<li>SAHAS</li>
</ol>
</li> -->
</ul>
</div>
</div>
<button class="md-close">Close</button>
</div>
</div>
<div class="container">
<!-- NAVIGATION -->
<div class="container">
<!-- This checkbox will give us the toggle behavior, it will be hidden, but functional -->
<input id="toggle" type="checkbox">
<!-- IMPORTANT: Any element that we want to modify when the checkbox state changes go here, being "sibling" of the checkbox element -->
<!-- This label is tied to the checkbox, and it will contain the toggle "buttons" -->
<label class="toggle-container" for="toggle">
<!-- If menu is open, it will be the "X" icon, otherwise just a clickable area behind the hamburger menu icon -->
<span class="button button-toggle"></span>
</label>
<!-- The nav menu -->
<nav class="nav">
<a class="nav-item" href="index.html">Home</a>
<a class="nav-item" href="aboutus.html">About Us</a>
<a class="nav-item" href="events.html">Events</a>
<a class="nav-item" href="shield.html">KJSCE Shield</a>
<a class="nav-item" href="generalrules.html">General Rules</a>
<a class="nav-item" href="parvaah.html">Parvaah</a>
<a class="nav-item" href="sponsors.html">Sponsors</a>
<a class="nav-item" href="contactus.html">Contact Us</a>
<!-- <a id="navlogo" class="nav-item" href=""><img src="logo.png" style="height: 70px; width: auto;"></a> -->
</nav>
<div id="navlogo"><a href="index.html"><img src="dummy.png"></a></div>
</div>
<!-- EVENTS TAB -->
<div class="eventsbg">
<div class="eventcontainer">
<div class="tab-wrap">
<!-- active tab on page load gets checked attribute -->
<!-- <input type="radio" id="tab1" name="tabGroup1" class="tab" checked>
<label for="tab1">About</label> -->
<input type="radio" id="tab3" name="tabGroup1" class="tab" checked>
<label for="tab3">Overview</label>
<input type="radio" id="tab2" name="tabGroup1" class="tab">
<label for="tab2">Events</label>
<!-- <input type="radio" id="tab4" name="tabGroup1" class="tab">
<label for="tab4">Informals</label>
<input type="radio" id="tab5" name="tabGroup1" class="tab">
<label for="tab5">Workshops</label> -->
<!-- TAB CONTENT -->
<!-- FIRST TAB -->
<div class="tab__content">
<p>The <strong>KJSCE Cultural Shield</strong> is the cultural leg of the year-long inter-departmental competition - The KJSCE Shield. Being the final lap in the race to attain bragging rights among the 5 departments of the college, these events induce some nail biting and nerve wracking moments among all the participants and attendees. A make or break hour for the departments, one is sure to witness some prodigious performances as all the departments put their best foot forward!</p>
<div class="scorecard" id="doughnut">
<h2>Comps</h2>
<div id="doughnutChart" class="chart"></div>
<div class="dept_logo"></div>
</div>
<div class="scorecard" id="doughnut1">
<h2>IT</h2>
<div id="doughnutChart1" class="chart"></div>
<div class="dept_logo"></div>
</div>
<div class="scorecard" id="doughnut2">
<h2>Mech</h2>
<div id="doughnutChart2" class="chart"></div>
<div class="dept_logo"></div>
</div>
<div class="scorecard" id="doughnut3">
<h2>Extc</h2>
<div id="doughnutChart3" class="chart"></div>
<div class="dept_logo"></div>
</div>
<div class="scorecard" id="doughnut4">
<h2>Etrx</h2>
<div id="doughnutChart4" class="chart"></div>
<div class="dept_logo"></div>
</div>
</div>
<!-- <div class="tab__content">
<h2>What is KJSCE Cultural Shield?</h2>
<p> The KJSCE Cultural Shield is the cultural leg of the year-long inter-departmental competition -The KJSCE Shield. Being the final lap in the race to attain bragging rights among the 5 departments of the college, these events induce some nail biting and nerve wracking moments among all the participants and attendees. A make or break hour for the departments, one is sure to witness some prodigious performances as all the departments put their best foot forward! </p>
</div> -->
<div class="tab__content">
<!-- CARDS -->
<div class="card-container md-trigger md-setperspective" data-modal="modal-1">
<!-- Do not delete, or else flexbox collapses -->
<img src="dummyevent.png">
<h4 class="eventtitle">Lorem Ipsum</h4>
<div class="card">
<div class="side">
<img src="assets/images/shield/antakshariicon.png">
<h4 class="eventtitle">Antakshari</h4>
</div>
<div class="side back" id="back-1">
</div>
</div>
</div>
<div class="card-container md-trigger md-setperspective" data-modal="modal-2">
<img src="dummyevent.png">
<h4 class="eventtitle">Lorem Ipsum</h4>
<div class="card">
<div class="side">
<img src="assets/images/shield/articon.png">
<h4 class="eventtitle">Art</h4>
</div>
<div class="side back" id="back-2">
</div>
</div>
</div>
<div class="card-container md-trigger md-setperspective" data-modal="modal-3">
<img src="dummyevent.png">
<h4 class="eventtitle">Lorem Ipsum</h4>
<div class="card">
<div class="side">
<img src="assets/images/shield/danceicon.png">
<h4 class="eventtitle">Dance</h4>
</div>
<div class="side back" id="back-3">
</div>
</div>
</div>
<div class="card-container md-trigger md-setperspective" data-modal="modal-4">
<img src="dummyevent.png">
<h4 class="eventtitle">Lorem Ipsum</h4>
<div class="card">
<div class="side">
<img src="assets/images/shield/debateicon.png">
<h4 class="eventtitle">Debate</h4>
</div>
<div class="side back" id="back-4">
</div>
</div>
</div>
<div class="card-container md-trigger md-setperspective" data-modal="modal-5">
<img src="dummyevent.png">
<h4 class="eventtitle">Lorem Ipsum</h4>
<div class="card">
<div class="side">
<img src="assets/images/shield/dramaicon.png">
<h4 class="eventtitle">Drama</h4>
</div>
<div class="side back" id="back-5">
</div>
</div>
</div>
<div class="card-container md-trigger md-setperspective" data-modal="modal-6">
<img src="dummyevent.png">
<h4 class="eventtitle">Lorem Ipsum</h4>
<div class="card">
<div class="side">
<img src="assets/images/shield/musicicon.png">
<h4 class="eventtitle">Music</h4>
</div>
<div class="side back" id="back-6">
</div>
</div>
</div>
<div class="card-container md-trigger md-setperspective" data-modal="modal-7">
<img src="dummyevent.png">
<h4 class="eventtitle">Lorem Ipsum</h4>
<div class="card">
<div class="side">
<img src="assets/images/shield/photogicon.png">
<h4 class="eventtitle">Photography</h4>
</div>
<div class="side back" id="back-7">
</div>
</div>
</div>
<div class="card-container md-trigger md-setperspective" data-modal="modal-8">
<img src="dummyevent.png">
<h4 class="eventtitle">Lorem Ipsum</h4>
<div class="card">
<div class="side">
<img src="assets/images/shield/quizicon.png">
<h4 class="eventtitle">Quiz</h4>
</div>
<div class="side back" id="back-8">
</div>
</div>
</div>
<div class="card-container md-trigger md-setperspective" data-modal="modal-9">
<img src="dummyevent.png">
<h4 class="eventtitle">Lorem Ipsum</h4>
<div class="card">
<div class="side">
<img src="assets/images/shield/jamboreeicon.png">
<h4 class="eventtitle">Jamboree</h4>
</div>
<div class="side back" id="back-9">
</div>
</div>
</div>
<div class="bottom"></div>
</div>
</div>
</div>
</div>
</div>
<div class="md-overlay"></div><!-- the overlay element -->
<!-- classie.js by @desandro: https://github.com/desandro/classie -->
<script src="assets/js/classie.js"></script>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/temp.js"></script>
<script src="assets/js/modalEffects.js"></script>
<!-- for the blur effect -->
<!-- by @derSchepp https://github.com/Schepp/CSS-Filters-Polyfill -->
<script>
// this is important for IEs
var polyfilter_scriptpath = 'assets/js/';
</script>
<script src="assets/js/cssParser.js"></script>
<script src="assets/js/css-filters-polyfill.js"></script>
</body>
</html>