This repository has been archived by the owner on Oct 3, 2019. It is now read-only.
forked from KhushilMistry/concours18
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
707 lines (687 loc) · 36.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Concours'18</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="stylesheet/utils.css">
<link rel="stylesheet" type="text/css" href="stylesheet/events.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="./assets/images/logo.png">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-125487432-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-125487432-1');
</script>
</head>
<body>
<div class="icon" id="icon">
<div class="hexagon"></div>
<div class="lines"></div>
<div class="lines"></div>
<div class="lines"></div>
</div>
<div id="container-div">
<div class="heading-container">
<p class="heading">E V E N T S</p>
</div>
<div id="myNav" class="overlay">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="index.html">HOME</a>
<a href="faq.html">FAQ</a>
<a href="events.html">EVENTS</a>
<a href="https://concours-2018.herokuapp.com/" target="_blank">REGISTER</a>
<a href="contact.html">CONTACT</a>
</div>
</div>
<div class="logo-container">
<img src="./assets/images/logo_black.png" width="70">
</div>
<div class="icon-container">
<a class="icon-link" href="https://www.facebook.com/ConcoursDaiict/" target="_blank"><i class="fa fa-facebook-official fa-lg"
aria-hidden="true"></i></a>
<a class="icon-link" href="https://www.instagram.com/sportsatdaiict/" target="_blank"><i class="fa fa-instagram fa-lg"
aria-hidden="true"></i></a>
<a class="icon-link" href="mailto:daiictconcours@gmail.com"><i class="fa fa-envelope fa-lg" aria-hidden="true"></i></a>
</div>
<div class="menu-icon" onclick="openNav()"><i class="fa fa-th-large fa-2x fa-menu-icon" aria-hidden="true"></i>
</div>
<div class="container events-container">
<div class="row">
<div class="col image-div">
<a href="#cricket" data-toggle="modal"><img class="image-container" src="assets/images/sport-icon/cricket.png"
width="150" height="150"></a>
</div>
<div class="col image-div">
<a href="#football" data-toggle="modal"><img class="image-container" src="assets/images/sport-icon/football.png"
width="150" height="150"></a>
</div>
<div class="col image-div">
<a href="#basketball" data-toggle="modal">
<img class="image-container" src="assets/images/sport-icon/basketball.png" width="150" height="150">
</a>
</div>
<div class="col image-div">
<a href="#badminton" data-toggle="modal">
<img class="image-container" src="assets/images/sport-icon/badminton.png" width="150" height="150">
</a>
</div>
<div class="col image-div">
<a href="#carrom" data-toggle="modal">
<img class="image-container" src="assets/images/sport-icon/carrom.png" width="150" height="150">
</a>
</div>
</div>
<div class="row">
<!-- <div class="col image-div">
<a href="#kabaddi" data-toggle="modal">
<img class="image-container" src="assets/images/sport-icon/kabaddi-court.png" width="150"
height="150">
</a>
</div> -->
<div class="col image-div">
<a href="#chess" data-toggle="modal">
<img class="image-container" src="assets/images/sport-icon/strategy.png" width="150" height="150">
</a>
</div>
<div class="col image-div">
<a href="#volleyball" data-toggle="modal">
<img class="image-container" src="assets/images/sport-icon/volleyball.png" width="150" height="150">
</a>
</div>
<div class="col image-div">
<a href="#tennis" data-toggle="modal">
<img class="image-container" src="assets/images/sport-icon/tennis.png" width="150" height="150">
</a>
</div>
<div class="col image-div">
<a href="#ping-pong" data-toggle="modal">
<img class="image-container" src="assets/images/sport-icon/ping-pong.png" width="150" height="150">
</a>
</div>
<div class="col image-div">
<a href="#youthrun" data-toggle="modal">
<img class="image-container" src="assets/images/sport-icon/youthrun.png" width="150" height="150">
</a>
</div>
</div>
</div>
<div class="container sub-event-container">
<p class="sub-heading">Other Fun Events</p>
<div class="row">
<div class="col event-div">
<p class="event-name">Anti chess</p>
</div>
<div class="col event-div">
<p class="event-name">Arm Wrestling</p>
</div>
<div class="col event-div">
<p class="event-name">Dart Game</p>
</div>
<div class="col event-div">
<p class="event-name">DJ party</p>
</div>
<div class="col event-div">
<p class="event-name">Dodge ball</p>
</div>
</div>
<div class="row">
<div class="col event-div">
<p class="event-name">Foot Volley Ball</p>
</div>
<div class="col event-div">
<p class="event-name">Futsal</p>
</div>
<div class="col event-div">
<p class="event-name">Gully cricket</p>
</div>
<div class="col event-div">
<p class="event-name">Human tic-tac-toe</p>
</div>
<div class="col event-div">
<p class="event-name">Kho-Kho</p>
</div>
</div>
<div class="row">
<div class="col event-div">
<p class="event-name">Mixed Badminton</p>
</div>
<div class="col event-div">
<p class="event-name">Mixed Table Tennis</p>
</div>
<div class="col event-div">
<p class="event-name">Randomized Carrom</p>
</div>
<div class="col event-div">
<p class="event-name">Tug of war</p>
</div>
<div class="col event-div">
<p class="event-name">3 vs 3 Volley Ball</p>
</div>
</div>
</div>
<p class="other-text">Registration for the fun events would be on-spot.</p>
<p class="other-text">There will be exciting prices for winners and runners-up.</p>
<div class="button-container">
<button type="button" class="btn btn-info">RULEBOOK</button>
</div>
</div>
<div class="modal" id="cricket" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Cricket</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="closebtn">×</span>
</button>
</div>
<div class="modal-body p-4">
<ul>
<li>Each college team should have a squad consisting of a maximum of 16 players and each player should
carry a valid college ID as well as latest paid college fee receipt.
</li>
<li>Each game will be of 20 overs per innings and all the pool structure and the schedule of the
matches will be informed by the event manager. (If the number of teams are more, some games might
be reduced to 16 overs per innings in order to complete the games in time)
</li>
<li>The matches will be played according to the Standard ICC rules of Twenty-20 cricket.
</li>
<li>The umpire’s decision regarding the anything during the match is final and bound.
</li>
<li>The organisers have a right to disqualify a team from the tournament if any of its players misbehaves
with people around even after warnings.
</li>
<li>In case of heavy rain, decision taken by umpires will be considered as final.
</li>
<li>Matches will be conducted with red balls provided by us.
</li>
<li>If the opposition team makes a justified objection about the colour of the uniform of your side,
you would be asked to change your uniform.
</li>
</ul>
<h5 class="modal-title">Fees : <b>Rs. 3600</b></h4>
</div>
<div class="modal-footer">
<a href="https://concours-2018.herokuapp.com/" class="register_link" target="_blank">
<button type="button" class="btn btn-info">
REGISTER
</button>
</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">CANCEL</button>
</div>
</div>
</div>
</div>
<div class="modal" id="football" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Football</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="closebtn">×</span>
</button>
</div>
<div class="modal-body p-4">
<ul>
<li>Normal FIFA rules apply.
</li>
<li>In case a team gets a walkover, it wins the match by a default 3-0 score line.
</li>
<li>A player who receives a red card or two yellow cards in a match will be suspended for the ongoing
match as well as next match.
</li>
<li>A player who picks up yellow cards in two different matches will be automatically suspended for
the next match.
</li>
<li>No yellow cards will be carried into the semi-final and (or) final.
</li>
<li>Regarding any off the field issues the decision of the organizing committee will be final and
binding on all parties.
</li>
<li>Any team or player found guilty of misconduct or violating the above rules may be disqualified.
</li>
<li>For Boys, maximum number of players allowed per team is 17. For Girls, maximum number of players
allowed per team is 14. A Minimum of 11 should register to participate.
</li>
<li>For Boys, each team will be allowed to make a maximum of 3 substitutions per match. For Girls
there would be rolling substitute.
</li>
</ul>
<h5 class="modal-title">Fees(Men) : <b>Rs. 2600</b></h4>
<h5 class="modal-title">Fees(Women) : <b>Rs. 1300</b></h4>
</div>
<div class="modal-footer">
<a href="https://concours-2018.herokuapp.com/" class="register_link" target="_blank">
<button type="button" class="btn btn-info">
REGISTER
</button>
</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">CANCEL</button>
</div>
</div>
</div>
</div>
<div class="modal" id="ping-pong" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Table Tennis </h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="closebtn">×</span>
</button>
</div>
<div class="modal-body p-4">
<ul>
<li>Maximum 4 players and minimum 3 players in a team (if the team consists of 4 players, then the
4th player will be considered as a substitute)
</li>
<li>Each team match consists of five individual matches and shall end when one team has won a majority
of the possible individual matches. Each individual match shall be the best of five games.
</li>
<li>White clothings (T-shirt or shorts) are not allowed.
</li>
<li>All the games except for finals and semi-finals will be a best of 3 set game, semi finals and
finals would be best of 5 set game and each set of 11 points.
</li>
<li>Before the start of the match, the team that won the toss shall choose to be either the ABC team
or the XYZ team. The captain shall nominate the players who will play the singles matches.
</li>
<li>After choosing ABC or XYZ team, the captain shall nominate players in position A, B, C or X,
Y, Z.
</li>
<li>Final decision on a point shall lie completely on match referee.
</li>
<li>Official table tennis rules of International Table Tennis Federation (ITTF) will be followed.
</li>
<li>The referee shall have power to disqualify a player from a match, a team match, an event or a
competition for seriously unfair or offensive behaviour.
</li>
<li>The team will be considered as withdrawn from the team match, if it does not start the first
match of a team match (walkover) or decides not to finish the team match. If a team withdraws
from a team match, the team match will be won 3-0 by the opponent.
</li>
</ul>
<h5 class="modal-title">Fees(Men) : <b>Rs. 1600</b></h4>
<h5 class="modal-title">Fees(Women) : <b>Rs. 1100</b></h4>
</div>
<div class="modal-footer">
<a href="https://concours-2018.herokuapp.com/" class="register_link" target="_blank">
<button type="button" class="btn btn-info">
REGISTER
</button>
</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">CANCEL</button>
</div>
</div>
</div>
</div>
<div class="modal" id="tennis" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Lawn Tennis </h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="closebtn">×</span>
</button>
</div>
<div class="modal-body p-4">
<ul>
<li>This is a team event.
</li>
<li>Each team should have minimum 2 and maximum 4 players.
</li>
<li>Each team will have 2 single ties, followed by a double tie if required.
</li>
<li>The round until the semis will be best of 3 short sets. (Race to 4 with a difference of two.
A tiebreak at 4 all if required.)
</li>
<li>The semis and final will be best of 3 proper sets each.
</li>
<li>The decision of the referees will be considered as final and the organizing committee has the
right to disqualify a team.
</li>
</ul>
<h5 class="modal-title">Fees(Men) : <b>Rs. 1600</b></h4>
<h5 class="modal-title">Fees(Women) : <b>Rs. 1100</b></h4>
</div>
<div class="modal-footer">
<a href="https://concours-2018.herokuapp.com/" class="register_link" target="_blank">
<button type="button" class="btn btn-info">
REGISTER
</button>
</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">CANCEL</button>
</div>
</div>
</div>
</div>
<div class="modal" id="volleyball" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Volleyball</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="closebtn">×</span>
</button>
</div>
<div class="modal-body p-4">
<ul>
<li>All league matches will be of 3 sets. In the case of a 1-1 tie, the deciding 3rd set is played
to 15 points. Semi finals and final will be of 5 sets. In the case of a 2-2 tie, the deciding
5th set is played to 15 points. Rest of the sets would be of 25 points each.
</li>
<li>A team that without any justifiable reason does not appear on the playing court on time will
lose the chance of playing and the points will be awarded to the opponents.
</li>
<li>The valid reason has to be put forward to the OFFICIALS OR JUDGES and their decision remains
final.
</li>
<li>However the team can continue participating in the competition.
</li>
<li>Before the start of each set the coach or the captain would present the starting lineup of his/her
team on a line up sheet.
</li>
<li>Once the line-up sheet has been submitted no changes can be made without a regular substitution.
</li>
<li>If two or more faults are committed successively only the first one is considered.
</li>
<li>If faults are committed by both the teams simultaneously then the point becomes void i.e., it
is a common point.
</li>
<li>Total number of players 12 including the Libero.
</li>
<li>Each team can request a maximum of 2 time-outs and 6 substitutions per set.
</li>
<li>There must be a completed rally between two separate substitution requests by the same team.
</li>
<li>Time-out requests must be made by showing the corresponding hand signal, when the ball is out
of play and before the whistle for service.
</li>
<li>All requested time-outs last for 30 seconds.
</li>
<li>Referee’s decision would be the final decision.
</li>
<li>Other international laws would be followed according to FIVB rules.
</li>
</ul>
<h5 class="modal-title">Fees(Men) : <b>Rs. 1600</b></h4>
<h5 class="modal-title">Fees(Women) : <b>Rs. 1100</b></h4>
</div>
<div class="modal-footer">
<a href="https://concours-2018.herokuapp.com/" class="register_link" target="_blank">
<button type="button" class="btn btn-info">
REGISTER
</button>
</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">CANCEL</button>
</div>
</div>
</div>
</div>
<div class="modal" id="badminton" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Badminton</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="closebtn">×</span>
</button>
</div>
<div class="modal-body p-4">
<h5>Boys :</h5>
<ul>
<li>Team events to be conducted.
</li>
<li>At least 4 players required and maximum 7.
</li>
<li>Teams having less than 4 players will be disqualified.
</li>
<li>The sequence of a team game is as follows:<br> Each match is best of three games, 21 points each.
<ul>
<li>1st match: 1st singles</li>
<li>2nd match: 2nd singles</li>
<li>3rd match: First Doubles</li>
<li>4th match: Third Singles (if required)</li>
<li>5rd match: Second Doubles (if required)</li>
</ul>
</li>
<li>Each match is best of three games, 21 points each.
</li>
<li>Against a team, a player cannot play more than 2 matches (not both singles or doubles).
</li>
<li>New IBF rules will be followed.
</li>
<li>Referee decisions will be final and the organizing committee hold the rights to disallow a player
from playing further.
</li>
</ul>
<h5>Girls :</h5>
<ul>
<li>Team events to be conducted.
</li>
<li>At least 3 players required and maximum 5.
</li>
<li>Teams having less than 3 players will be disqualified.
</li>
<li>The sequence of a team game is as follows:<br> Each match is best of three games, 21 points each.
<ul>
<li>1st match: 1st singles</li>
<li>2nd match : 1st Doubles</li>
<li>3rd match : 2nd Singles (If required)</li>
</ul>
</li>
<li>Each match is best of three games, 21 points each.
</li>
<li>Against a team, only one player from the team can play (at max) two matches (not both singles)
and no player can play more than 2 matches.
</li>
<li>New IBF rules will be followed.
</li>
<li>Referee decisions will be final and the organizing committee hold the rights to disallow a player
from playing further.
</li>
</ul>
<h5 class="modal-title">Fees(Men) : <b>Rs. 1600</b></h4>
<h5 class="modal-title">Fees(Women) : <b>Rs. 1100</b></h4>
</div>
<div class="modal-footer">
<a href="https://concours-2018.herokuapp.com/" class="register_link" target="_blank">
<button type="button" class="btn btn-info">
REGISTER
</button>
</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">CANCEL</button>
</div>
</div>
</div>
</div>
<div class="modal" id="carrom" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Carrom</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="closebtn">×</span>
</button>
</div>
<div class="modal-body p-4">
<ul>
<li>Standard Carrom rules apply.
</li>
<li>Mixed team is allowed but isn’t compulsory.
</li>
<li>Team Size – 4 members.
</li>
<li>Teams should report 15 minutes before the scheduled time. If a team is late by more than 5 minutes
then the other team will be declared as the winner.
</li>
<li>In case of any conflict, the decision of the organizing committee shall be final and binding.
</li>
<li>The participants will be given rules before the start of the tournament.
</li>
<li>Participants can use only one hand and cannot change hand during the game.
</li>
</ul>
<h5 class="modal-title">Fees : <b>Rs. 1100</b></h4>
</div>
<div class="modal-footer">
<a href="https://concours-2018.herokuapp.com/" class="register_link" target="_blank">
<button type="button" class="btn btn-info">
REGISTER
</button>
</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">CANCEL</button>
</div>
</div>
</div>
</div>
<div class="modal" id="basketball" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Basketball</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="closebtn">×</span>
</button>
</div>
<div class="modal-body p-4">
<ul>
<li>FIBA rules applicable.
</li>
<li>10 minutes each quarter with 2 minute break between the quarters and 5 minutes at half time (unless
otherwise stated).
</li>
<li>Teams should report to the basketball court 15 minutes before their match.
</li>
<li>All the players of the team should have same colour of jersey with printed numbers.
</li>
<li>Use of abusive or foul language during the play can lead to technical fouls or expulsion depending
on the referee and the organizing committee.
</li>
<li>No players should have anything on his/her hand or neck (wrist watch, necklace, ring, kada, bracelet
etc.) Jewellery of any kind is not allowed and nails have to be cut.
</li>
<li>Maximum 12 players are allowed in a team.
</li>
<li>In any case, the decision of referee and the officials shall be considered final.
</li>
</ul>
<h5 class="modal-title">Fees(Men) : <b>Rs. 1600</b></h4>
<h5 class="modal-title">Fees(Women) : <b>Rs. 1100</b></h4>
</div>
<div class="modal-footer">
<a href="https://concours-2018.herokuapp.com/" class="register_link" target="_blank">
<button type="button" class="btn btn-info">
REGISTER
</button>
</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">CANCEL</button>
</div>
</div>
</div>
</div>
<div class="modal" id="chess" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Chess</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="closebtn">×</span>
</button>
</div>
<div class="modal-body p-4">
<ul>
<li>The game is going to be played between 2 players from different teams (a team consists of 4 players
who actually play in tournament and one extra).
</li>
<li>All the team members must belong to the same Institute. 4 players play against the 4 players
of their opponent team) on a chessboard.
</li>
<li>The clock will be used after an hour if need arises and 20 minutes will be given to each player.
</li>
<li>If a player from Team A wins against a player from Team B, then he gets 1 point for his team
and if they end in a draw, both the players get 0.5 points for their team, to be added into the
round points of the team.
</li>
<li>At the end of the tournament, all the round points will be added and the team with the most round
points wins.
</li>
</ul>
<h5 class="modal-title">Fees : <b>Rs. 1100</b></h4>
</div>
<div class="modal-footer">
<a href="https://concours-2018.herokuapp.com/" class="register_link" target="_blank">
<button type="button" class="btn btn-info">
REGISTER
</button>
</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">CANCEL</button>
</div>
</div>
</div>
</div>
<div class="modal" id="kabaddi" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Kabaddi</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="closebtn">×</span>
</button>
</div>
<div class="modal-body p-4">
<ul>
<li>A maximum of 12 players in a team are allowed.
</li>
<li>Matches will be played according to Kabaddi federation of India rules and regulations.
</li>
<li>Players upto 85 kg in weight are allowed to participate.
</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-info" data-dismiss="modal">REGISTER</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal">CANCEL</button>
</div>
</div>
</div>
</div>
<div class="modal" id="youthrun" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-full" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Youth Run (Marathon)</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true" class="closebtn">×</span>
</button>
</div>
<div class="modal-body p-4">
<ul>
<li>It is a 7 km marathon in the city of Gandhinagar starting from DA-IICT’s gate till GH3 and back.
</li>
</ul>
<h5 class="modal-title">Fees : <b>TBA</b></h4>
</div>
<div class="modal-footer">
<a href="https://concours-2018.herokuapp.com/" class="register_link" target="_blank">
<button type="button" class="btn btn-info">
REGISTER
</button>
</a>
<button type="button" class="btn btn-secondary" data-dismiss="modal">CANCEL</button>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script src="JS/utils.js"></script>
<script src="JS/contact.js"></script>
</body>
</html>