forked from KJSCE-Skream/KJSCE-Skream.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
1026 lines (1012 loc) · 35.6 KB
/
events.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> <!--footer and boys girls dropdown-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="theme-color" content="#ff8832">
<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>Events</title>
<link rel="icon" href="./assets/images/skream icon.png">
<link rel="stylesheet" href="./dist/css/bootstrap.css">
<!-- <link rel="stylesheet" href="dist/css/bootstrap-material-design.min.css" /> -->
<!-- <link rel="stylesheet" href="dist/css/ripples.min.css" /> -->
<!-- <link href="./dist/css/full-slider.css" rel="stylesheet"> -->
<!-- <link rel="stylesheet" href="dist/css/events.css"> -->
<link rel="stylesheet" href="dist/css/main.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" href="dist/css/simple-sidebar.css">
<link rel="stylesheet" type="text/css" href="dist/css/effects1.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
</style>
<!-- <script src="dist/js/paynow.min.js"></script> -->
</head>
<body >
<header>
<nav class="navbar navbar- bg-faded usesvh">
<div class="container-fluid navbar-container usesvh">
<div class="navbar-header">
<div class="center" id ="fuck" style="display:inline-block;float:left;">
<a onclick="" id="fuck">
<i class="fa fa-bars fa-2x" id="bars"></i>
</a>
</div>
<a class="navbar-brand usesvh" href="#" style="margin-left: 5px !important;">
<!-- <img src="./assets/images/navbar_logo.png" height="50" id="navbar-logo" alt="" class=""> -->
<p style="font-family: Fold21 !important; color: #ff8832"><strong>SKREAM '18</strong></p>
</a>
</div>
<div class="nav-current" style="">
<p style="font-family: Fold21 !important; color: #ff8832">EVENTS</p>
</div>
</div>
</nav>
</header>
<hr />
<div class="container usesvh" id="container">
<!-- Sidebar -->
<div id="side-nav" class="side-bar">
<ul class="sidebar-nav">
<li>
<a href="./index.html"><i class="fa fa-home fa-1x"></i> Home</a>
</li>
<li>
<a href="./events.html"><i class="fa fa-soccer-ball-o fa-1x"></i> Events</a>
</li>
<li>
<a href="./Rules.html"><i class="fa fa-map-o fa-1x"></i> Rules</a>
</li>
<li>
<a href="./Accomodation.html"><i class="fa fa-briefcase fa-1x"></i> Accommodation</a>
</li>
<li>
<a href="./registration.html"><i class="fa fa-pencil-square fa-1x"></i> Registration</a>
</li>
<li>
<a href="./parvaah.html"><i class="fa fa-product-hunt fa-1x"></i> Parvaah</a>
</li>
<li>
<a href="./sponsor.html"><i class="fa fa-handshake-o fa-1x"></i> Sponsors</a>
</li>
<li>
<a href="./contact.html"><i class="fa fa-id-card-o fa-1x"></i> Contact</a>
</li>
</ul>
</div>
<div class="main " id="main" style="padding-top: 6vh;">
<div class="container">
<ul class="nav nav-tabs menu">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Football<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a data-toggle="tab" href="#football">Football</a></li>
<li><a data-toggle="tab" href="#cricket">Cricket</a></li>
<li><a data-toggle="tab" href="#badminton">Badminton</a></li>
<li><a data-toggle="tab" href="#rinkfootball">Rink Football</a></li>
<li><a data-toggle="tab" href="#throwball">Throwball</a></li>
<li><a data-toggle="tab" href="#carrom">Carrom</a></li>
<li><a data-toggle="tab" href="#boxcricket">Box Cricket</a></li>
<li><a data-toggle="tab" href="#squash">Squash</a></li>
<li><a data-toggle="tab" href="#lawntennis">Lawn Tennis</a></li>
<li><a data-toggle="tab" href="#basketball">Basketball</a></li>
<li><a data-toggle="tab" href="#tabletennis">Table Tennis</a></li>
<li><a data-toggle="tab" href="#athletics">Athletics</a></li>
<li><a data-toggle="tab" href="#volleyball">Volleyball</a></li>
<li><a data-toggle="tab" href="#chess">Chess</a></li>
</ul>
</li>
</ul>
<div class="tab-content">
<div id="home" class="tab-pane fade">
<h4>Over the years</h4>
<p>
Skream has evolved into a sporting institution in its 4 years of existence. A festival that
started out as a small-scale sports event has now fully blossomed into one of the most
premier sports festivals in India. Last year, Wasim Jaffer, Poonam Chopra, Uday Bedekar,
and Ashish K. Srivastava attended the opening ceremony of Skream 2017. As we await
Skream 2018, let the past be a testament to what Skream stands for, and what it stands
for is unbridled sportsmanship.
</p>
<h4 style="text-align: right;">“Sports do not build character.
They expose it.”</h4>
<h6 style="text-align: right;"> - Heywood Broun</h6>
</div>
<div id="football" class="tab-pane fade in active">
<div class="left" id="left_football"></div>
<div class="right">
<h3 class="heading">Football</h3>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#football_boys">Boys</a></li>
<li><a data-toggle="tab" href="#football_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="football_boys" class="tab-pane fade in active">
<h6><strong style="color: #ff8832;">NOTE:</strong> Open only to engineering colleges.</h6>
<h4>Rules</h4>
<ul>
<li>No. of players per team: 11+5</li>
<li>3 substitutions are allowed</li>
<li>Half length: 20 mins, with a 5 minute break between halves</li>
<li>All players should come in proper kit</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 2,800</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 27,000</li>
<li>2nd Place: Rs. 12,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Shardul: 7588247733</li>
<li>Saiyam: 9821600650</li>
</ul>
</div>
<div id="football_girls" class="tab-pane fade">
<h4>Rules</h4>
<ul>
<li>No. of players per team: 5+2</li>
<li>Rolling substitutes are allowed</li>
<li>Half length is of 7 minutes</li>
<li>Shoes are compulsory (studs are not allowed)</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 700</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 6,000</li>
<li>2nd Place: Rs. 2,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Ashanka: 9821694183</li>
<li>Krupa: 9004825485</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="cricket" class="tab-pane fade">
<div class="left" id="left_cricket"></div>
<div class="right">
<h3 class="heading">Cricket</h3>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#cricket_boys">Boys</a></li>
<li><a class="isDisabled" data-toggle="tab" href="#cricket_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="cricket_boys" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>No. of players per team: 11+5</li>
<li>6 overs per match</li>
<li>Super over incase of a draw</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 1,600</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 13,000</li>
<li>2nd Place: Rs. 5,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Abhishek: 9619147876</li>
<li>Devesh: 8828387054</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="badminton" class="tab-pane fade">
<div class="left" id="left_badminton"></div>
<div class="right">
<h3 class="heading">Badminton</h3>
<h6><strong style="color: #ff8832;">NOTE:</strong> Gum Soles are compulsory</h6>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#badminton_boys">Boys</a></li>
<li><a data-toggle="tab" href="#badminton_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="badminton_boys" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>Single event and team event</li>
<li>No. of players per team : 5 maximum, 3 minimum</li>
<li>Team event will be played in following manner
<ul>
<li>Singles</li>
<li>Doubles</li>
<li>Singles</li>
<li>Only one player can play two matches (but not both singles)</li>
</ul>
</li>
<li>Direct knockout format for both singles and team event</li>
<li>Gum sole shoes are mandatory</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Singles- Rs. 300</li>
<li>Team- Rs. 600</li>
</ul>
<h4>Prize Money</h4>
Singles-
<ul>
<li>1st Place: Rs. 2,500</li>
<li>2nd Place: Rs. 1,200</li>
</ul>
Team-
<ul>
<li>1st Place: Rs. 5,500</li>
<li>2nd Place: Rs. 2,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Mayur: 9820614243</li>
<li>Rajas: 8779096321</li>
</ul>
</div>
<div id="badminton_girls" class="tab-pane fade">
<h4>Rules</h4>
<ul>
<li>Single event and Doubles event</li>
<li>Both player should be from same college</li>
<li>Direct knockout format</li>
<li>Gum sole shoes are mandatory</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Singles- Rs. 250</li>
<li>Team- Rs. 450</li>
</ul>
<h4>Prize Money</h4>
Singles-
<ul>
<li>1st Place: Rs. 2,000</li>
<li>2nd Place: Rs. 800</li>
</ul>
Team-
<ul>
<li>1st Place: Rs. 4,000</li>
<li>2nd Place: Rs. 1,500</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Radhika: 9819799364</li>
<li>Hetal: 9819746588</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="rinkfootball" class="tab-pane fade">
<div class="left" id="left_rinkfootball"></div>
<div class="right">
<h3 class="heading">Rink Football</h3>
<!-- <h6><strong style="color: #ff8832;">NOTE:</strong> Gum Soles are compulsory</h6> -->
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#rinkfootball_boys">Boys</a></li>
<li><a class="isDisabled" data-toggle="tab" href="#rinkfootball_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="rinkfootball_boys" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>No. of players per team : 5 + 2</li>
<li>Shoes are compulsory(studs are not allowed)</li>
<li>Rolling substitutes are allowed</li>
<li>The tournament will proceed on a knockout basis</li>
<li>Half length is of 7 minutes</li>
<li>The rules and regulations for rink football are as follows:-
<ul>
<li>Tie will be decided by a one on one match</li>
<li>Throw-ins will be replaced by touch-ins</li>
<li>5 straight corners conceded are penalized with 1 end to end penalty</li>
<li>High passes are allowed in your own half but across the field passes have to be below chest height</li>
<li>Free kicks can be direct in the attacking half. However, in the team's own half they have to be indirect and the rise rule is applicable once again.</li>
<li>Hand balls and fouls will be penalized with free kick or penalty depending on the position.</li>
</ul>
</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 700</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 6,000</li>
<li>2nd Place: Rs. 2,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Rohan: 9167603203</li>
<li>Deep: 9619399169</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="throwball" class="tab-pane fade">
<div class="left" id="left_throwball"></div>
<div class="right">
<h3 class="heading">Throwball</h3>
<!-- <h6><strong style="color: #ff8832;">NOTE:</strong> Open only to engineering colleges.</h6> -->
<ul class="nav nav-tabs">
<li><a class="isDisabled" data-toggle="tab" href="#throwball_boys">Boys</a></li>
<li class="active"><a data-toggle="tab" href="#throwball_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="throwball_girls" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>No. of players per team : 6+4</li>
<li>Tournament will be conducted in league format</li>
<li>Match will be best of three games</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 400</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 3,000</li>
<li>2nd Place: Rs. 1,200</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Avi: 9757192934</li>
<li>Jishna: 8097263468</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="carrom" class="tab-pane fade">
<div class="left" id="left_carrom"></div>
<div class="right">
<h3 class="heading">Carrom</h3>
<!-- <h6><strong style="color: #ff8832;">NOTE:</strong> Open only to engineering colleges.</h6> -->
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#carrom_boys">Boys</a></li>
<li><a data-toggle="tab" href="#carrom_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="carrom_boys" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>All university rules applicable</li>
<li>Singles and doubles event</li>
<li>In doubles, both the players should be from the same college</li>
<li>Direct knockout format</li>
</ul>
<h4>Entry Fee</h4>
Singles-
<ul>
<li>Rs. 100</li>
</ul>
Doubles-
<ul>
<li>Rs. 200</li>
</ul>
<h4>Prize Money</h4>
Singles-
<ul>
<li>1st Place: Rs. 1,500</li>
<li>2nd Place: Rs. 700</li>
</ul>
Doubles-
<ul>
<li>1st Place: Rs. 3,000</li>
<li>2nd Place: Rs. 1,400</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Dhruvit: 9930752552</li>
<li>Mitu: 9892015944</li>
</ul>
</div>
<div id="carrom_girls" class="tab-pane fade">
<h4>Rules</h4>
<ul>
<li>All university rules Applicable</li>
<li>Only singles event</li>
<li>Direct knockout format</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 100</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 1,500</li>
<li>2nd Place: Rs. 700</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Komal: 9004486654</li>
<li>Anisha: 7738098922</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="boxcricket" class="tab-pane fade">
<div class="left" id="left_boxcricket"></div>
<div class="right">
<h3 class="heading">Box Cricket</h3>
<!-- <h6><strong style="color: #ff8832;">NOTE:</strong> Open only to engineering colleges.</h6> -->
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#boxcricket_boys">Boys</a></li>
<li><a class="isDisabled" data-toggle="tab" href="#boxcricket_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="boxcricket_boys" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>No. of players per team: 6+3</li>
<li>5 overs a side</li>
<li>Minimum 4 bowlers(2-1-1-1)</li>
<li>1 tip 1 hand out</li>
<li>Direct boundary cross out</li>
<li>4 runs, 2 runs and 1 run declared will be marked</li>
<li>No juggling while taking a catch after 1 tip</li>
<li>Wide / No ball - 2 runs</li>
<li>Movement of Legs while bowling will not be allowed. Bowler will have to stand in the square box and bowl.</li>
<li>Hand Swing while bowling will be restricted and umpires decision will be the final decision on this</li>
<li>Angle between the bowling hand and the body should be less than 30 degrees. The bend of the elbow should also be less than 30 degrees</li>
<li>No ball criteria: (Above Waist height) 2nd bounce is no ball and direct (full toss) above knee level is no ball. </li>
<li>Wide + stumping = Wicket +1 run(Ball not counted) </li>
<li>If ball crosses the boundaries directly after touching a player, runs will be given accordingly. The batsmen will be not-out.</li>
<li><strong>Challenge Over</strong> : The batting team has to select an over. The batting team will then tell the umpire the number of runs they have set as a target for that over.</li>
<li>If they achieve it, the no. of runs that they have set for that over, will double.</li>
<li>If they fail, they will be given no runs for that over, it will be counted as a maiden over. (Eg. If the batting team selects the 2nd over as the challenge over, and sets a target of 10 runs for that over. If they score 10, they will get 20 runs. If they fail they'll get 0)</li>
<li>If the batting team doesn't select a challenge over, then by default last over will be considered as challenge over.</li>
<li>On the fall of every wicket in the challenge over, 3 runs will be deducted from the score each time.</li>
<li>Maximum time for one inning is 16 minutes. (Action will be taken if the inning is not completed in the span)</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 600</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 5,000</li>
<li>2nd Place: Rs. 2,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Nitin: 9969041096</li>
<li>Vatsal: 9769088311</li>
</ul>
</div>
<div id="boxcricket_girls" class="tab-pane fade">
<h4>Rules</h4>
<ul>
<li>No. of players per team : 6+2</li>
<li>Direct knockout format</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 400</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 3,000</li>
<li>2nd Place: Rs. 1,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Hashmita: 9029723111</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="squash" class="tab-pane fade">
<div class="left" id="left_squash"></div>
<div class="right">
<h3 class="heading">Squash</h3>
<!-- <h6><strong style="color: #ff8832;">NOTE:</strong> Open only to engineering colleges.</h6> -->
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#squash_boys">Boys</a></li>
<li><a data-toggle="tab" href="#squash_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="squash_boys" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>Singles event only</li>
<li>Best of 3 games</li>
<li>Semi-finals and finals, best of 5</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 300</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 2,500</li>
<li>2nd Place: Rs. 1,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Hitansh: 9920095994</li>
<li>Jayesh: 9920856550</li>
</ul>
</div>
<div id="squash_girls" class="tab-pane fade">
<h4>Rules</h4>
<ul>
<li>Singles event only</li>
<li>Best of 3 games</li>
<li>Semi-finals and finals, best of 5</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 150</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 1,500</li>
<li>2nd Place: Rs. 400</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Hitansh: 9920095994</li>
<li>Jayesh: 9920856550</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="lawntennis" class="tab-pane fade">
<div class="left" id="left_lawntennis"></div>
<div class="right">
<h3 class="heading">Lawn Tennis</h3>
<h6><strong style="color: #ff8832;">NOTE:</strong> Non marking shoes are compulsory</h6>
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#lawntennis_boys">Boys</a></li>
<li><a data-toggle="tab" href="#lawntennis_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="lawntennis_boys" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>Singles event only</li>
<li>Direct knockout format</li>
<li>Non-Marking Shoes are compulsory</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 400</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 3,500</li>
<li>2nd Place: Rs. 1,200</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Saurabh: 9769534676</li>
<li>Kshitij: 8976363472</li>
</ul>
</div>
<div id="lawntennis_girls" class="tab-pane fade">
<h4>Rules</h4>
<ul>
<li>Singles event only</li>
<li>Direct knockout format</li>
<li>Non-Marking Shoes are compulsory</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 200</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 1,800</li>
<li>2nd Place: Rs. 600</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Ankita: 8451824791</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="basketball" class="tab-pane fade">
<div class="left" id="left_basketball"></div>
<div class="right">
<h3 class="heading">Basketball</h3>
<!-- <h6><strong style="color: #ff8832;">NOTE:</strong> Open only to engineering colleges.</h6> -->
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#basketball_boys">Boys</a></li>
<li><a data-toggle="tab" href="#basketball_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="basketball_boys" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>No. of players per team : 5+7</li>
<li>Direct knockout format</li>
<li>Quarter length :9 minutes running</li>
<li>Colours and kits are compulsory</li>
<li>All matches will be played according to FIBA rules</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 1,200</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 12,000</li>
<li>2nd Place: Rs. 5,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Tanmay: 9422179268</li>
<li>Archit: 9324140110</li>
</ul>
</div>
<div id="basketball_girls" class="tab-pane fade">
<h4>Rules</h4>
<ul>
<li>No. of players per team : 5+7</li>
<li>Direct knockout format</li>
<li>Quarter length :9 minutes running</li>
<li>Colours and kits are compulsory</li>
<li>All matches will be played according to FIBA rules</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 700</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 5,000</li>
<li>2nd Place: Rs. 2,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Ishika: 9930713071</li>
<li>Namasvi: 9969508463</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="tabletennis" class="tab-pane fade">
<div class="left" id="left_tabletennis"></div>
<div class="right">
<h3 class="heading">Table Tennis</h3>
<!-- <h6><strong style="color: #ff8832;">NOTE:</strong> Open only to engineering colleges.</h6> -->
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#tabletennis_boys">Boys</a></li>
<li><a data-toggle="tab" href="#tabletennis_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="tabletennis_boys" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>All matches will be played as a best of 5 games between 3 players from each team</li>
<li>Matches will be strictly conducted according to TTFI rules</li>
<li>Singles event and Team event</li>
<li>No. of players per team : 5 maximum,3 minimum</li>
<li>Direct knockout format for singles event and league format for the team event</li>
</ul>
<h4>Entry Fee</h4>
Singles-
<ul>
<li>Rs. 300</li>
</ul>
Team-
<ul>
<li>Rs. 600</li>
</ul>
<h4>Prize Money</h4>
Singles-
<ul>
<li>1st Place: Rs. 2,500</li>
<li>2nd Place: Rs. 1,200</li>
</ul>
Team-
<ul>
<li>1st Place: Rs. 5,500</li>
<li>2nd Place: Rs. 2,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Nishit: 9022043979</li>
<li>Tanmay: 7387385186</li>
</ul>
</div>
<div id="tabletennis_girls" class="tab-pane fade">
<h4>Rules</h4>
<ul>
<li>Only singles event</li>
<li>Guidelines laid down by TTFI will be followed for the tournament</li>
<li>Tournament will be conducted in a league format</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 250</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 2,000</li>
<li>2nd Place: Rs. 800</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Aditi: 9004134578</li>
<li>Rachana: 9158590416</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="athletics" class="tab-pane fade">
<div class="left" id="left_athletics"></div>
<div class="right">
<h3 class="heading">Athletics</h3>
<!-- <h6><strong style="color: #ff8832;">NOTE:</strong> Open only to engineering colleges.</h6> -->
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#athletics_boys">Boys</a></li>
<li><a data-toggle="tab" href="#athletics_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="athletics_boys" class="tab-pane fade in active">
<h4>Events</h4>
<ul>
<li>100m</li>
<li>200m</li>
<li>400m</li>
<li>Relay</li>
<li>Shot Put</li>
<li>Long Jump</li>
</ul>
<h4>Rules</h4>
<ul>
<li>The tournament will follow the latest rules laid down by the Athletics Federation of India</li>
</ul>
<h4>Entry Fee</h4>
100m, 200m, 400m, Shot Put, Long Jump-
<ul>
<li>Rs. 100</li>
</ul>
Relay-
<ul>
<li>Rs. 400</li>
</ul>
<h4>Prize Money</h4>
100m, 200m, 400m, Shot Put, Long Jump-
<ul>
<li>1st Place: Rs. 1,000</li>
<li>2nd Place: Rs. 400</li>
</ul>
Relay-
<ul>
<li>1st Place: Rs. 2,000</li>
<li>2nd Place: Rs. 800</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Agam: 8888885580</li>
<li>Umang: 8767976170</li>
</ul>
</div>
<div id="athletics_girls" class="tab-pane fade">
<h4>Rules</h4>
<ul>
<li>100m</li>
<li>200m</li>
<li>400m</li>
<li>Relay</li>
<li>Shot Put</li>
</ul>
<h4>Rules</h4>
<ul>
<li>The tournament will follow the latest rules laid down by the Athletics Federation of India</li>
</ul>
<h4>Entry Fee</h4>
100m, 200m, 400m, Shot Put-
<ul>
<li>Rs. 100</li>
</ul>
Relay-
<ul>
<li>Rs. 400</li>
</ul>
<h4>Prize Money</h4>
100m, 200m, 400m, Shot Put-
<ul>
<li>1st Place: Rs. 1,000</li>
<li>2nd Place: Rs. 400</li>
</ul>
Relay-
<ul>
<li>1st Place: Rs. 2,000</li>
<li>2nd Place: Rs. 800</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Shrutika: 8286169408</li>
<li>Shravani: 7021504835</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="volleyball" class="tab-pane fade">
<div class="left" id="left_volleyball"></div>
<div class="right">
<h3 class="heading">Volleyball</h3>
<!-- <h6><strong style="color: #ff8832;">NOTE:</strong> Open only to engineering colleges.</h6> -->
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#volleyball_boys">Boys</a></li>
<li><a data-toggle="tab" href="#volleyball_girls">Girls</a></li>
</ul>
<div class="tab-content">
<div id="volleyball_boys" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>No. of players per team : 6+6</li>
<li>Best of 3 sets</li>
<li>All the rules and standards to be followed, apart from above mentioned, are according to FIVB</li>
<li>Libero kit should be of a different colour</li>
<li>Direct knockout format.</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 1,200</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 13,000</li>
<li>2nd Place: Rs. 5,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Yash C.: 9423561032</li>
<li>Yash P.: 9762464717</li>
</ul>
</div>
<div id="volleyball_girls" class="tab-pane fade">
<h4>Rules</h4>
<ul>
<li>No. of players per team : 6+6</li>
<li>Best of 3 sets</li>
<li>All the rules and standards to be followed, apart from above mentioned, are according to FIVB</li>
<li>Libero kit should be of a different colour</li>
<li>Direct knockout format</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 700</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 5,000</li>
<li>2nd Place: Rs. 2,000</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Urvashi: 9920913995</li>
<li>Disha: 9167232199</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<div id="chess" class="tab-pane fade">
<div class="left" id="left_chess"></div>
<div class="right">
<h3 class="heading">Chess</h3>
<!-- <h6><strong style="color: #ff8832;">NOTE:</strong> Open only to engineering colleges.</h6> -->
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#chess_traditional">Traditional</a></li>
<li><a data-toggle="tab" href="#chess_bughouse">Bughouse</a></li>
</ul>
<div class="tab-content">
<div id="chess_traditional" class="tab-pane fade in active">
<h4>Rules</h4>
<ul>
<li>A Swiss League tournament will be conducted which will follow the rules laid down by the federation</li>
<li>Number of rounds will be decided based on number of entries</li>
<li>Time Control : 40 minutes per match</li>
<li>2 illegal moves will result into a loss</li>
<li>Other standard rules apply</li>
<li>In case of tie after the last round, standings will be decided by tiebreaker/ progressive ratings/ rBH</li>
<li>The player has to report within 20 minutes of the start of round, failing which a bye will be offered to the opponent</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 100</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 2,400</li>
<li>2nd Place: Rs. 1,200</li>
<li>3rd Place: Rs. 600</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Chinmay: 9869514250</li>
<li>Rahil: 9869225071</li>
</ul>
</div>
<div id="chess_bughouse" class="tab-pane fade">
<h4>Rules</h4>
<ul>
<li>Team of two.</li>
<li>Time control will be 5|0.</li>
<li>Tournament will be conducted in Swiss league format.</li>
<li>Open to both boys and girls</li>
</ul>
<h4>Entry Fee</h4>
<ul>
<li>Rs. 100</li>
</ul>
<h4>Prize Money</h4>
<ul>
<li>1st Place: Rs. 700</li>
</ul>
<h4>Event Heads</h4>
<ul>
<li>Chinmay: 9869514250</li>
<li>Rahil: 9869225071</li>
</ul>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>