-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2180 lines (2021 loc) · 102 KB
/
index.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="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Rann-Neeti'17 </title>
<meta name="description" content="Rann-Neeti is annual sports fest of IIT Mandi." />
<meta name="keywords" content="IIT Mandi, Sports Fest, Rann Neeti, responsive template, cv, multipurpose, portfolio, html5 template, themeforest.net, bootstrap, html5, creative, sass, clean, design, modern, angular js," />
<meta name="author" content="hencework"/>
<link rel="shortcut icon" href="favicon.ico">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<!--CSS-->
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body id="body">
<!--Preloader-->
<div class="preloader-it">
<div class="mdl-spinner mdl-js-spinner is-active is-upgraded" data-upgraded=",MaterialSpinner"><div class="mdl-spinner__layer mdl-spinner__layer-1"><div class="mdl-spinner__circle-clipper mdl-spinner__left"><div class="mdl-spinner__circle"></div></div><div class="mdl-spinner__gap-patch"><div class="mdl-spinner__circle"></div></div><div class="mdl-spinner__circle-clipper mdl-spinner__right"><div class="mdl-spinner__circle"></div></div></div><div class="mdl-spinner__layer mdl-spinner__layer-2"><div class="mdl-spinner__circle-clipper mdl-spinner__left"><div class="mdl-spinner__circle"></div></div><div class="mdl-spinner__gap-patch"><div class="mdl-spinner__circle"></div></div><div class="mdl-spinner__circle-clipper mdl-spinner__right"><div class="mdl-spinner__circle"></div></div></div><div class="mdl-spinner__layer mdl-spinner__layer-3"><div class="mdl-spinner__circle-clipper mdl-spinner__left"><div class="mdl-spinner__circle"></div></div><div class="mdl-spinner__gap-patch"><div class="mdl-spinner__circle"></div></div><div class="mdl-spinner__circle-clipper mdl-spinner__right"><div class="mdl-spinner__circle"></div></div></div><div class="mdl-spinner__layer mdl-spinner__layer-4"><div class="mdl-spinner__circle-clipper mdl-spinner__left"><div class="mdl-spinner__circle"></div></div><div class="mdl-spinner__gap-patch"><div class="mdl-spinner__circle"></div></div><div class="mdl-spinner__circle-clipper mdl-spinner__right"><div class="mdl-spinner__circle"></div></div></div></div>
</div>
<!--/Preloader-->
<!--Main Wrapper-->
<div class="main-wrapper dark-mode">
<!--Bg Image-->
<div class="bg-struct bg-img">
<div class="bg-img-overlay"></div>
</div>
<!--/Bg Image-->
<div class="mdl-js-layout mdl-layout--fixed-header">
<!--Top Header-->
<header class="mdl-layout__header">
<div class="mdl-layout__header-row mdl-scroll-spy-1">
<!-- Title -->
<a href="index.html"><span class="mdl-layout-title">Rann-Neeti '17</span></a>
<div class="mdl-layout-spacer"></div>
<ul class="nav mdl-navigation mdl-layout--large-screen-only">
<li><a class="mdl-navigation__link" data-scroll href="#event_sec">about</a></li>
<li><a class="mdl-navigation__link" data-scroll href="#interest_sec">sports</a></li>
<li><a class="mdl-navigation__link" data-scroll href="#schedule_sec">schedule</a></li>
<li><a class="mdl-navigation__link" data-scroll href="#speaker_sec">Our Team </a></li>
<!-- <li><a class="mdl-navigation__link" data-scroll href="#price_sec">pricing</a></li> -->
<li><a class="mdl-navigation__link" data-scroll href="#client_sec">sponsors</a></li>
<li><a class="mdl-navigation__link" data-scroll href="#portfolio_sec">gallery</a></li>
<!-- <li><span id="blog_drp" class="mdl-navigation__link">blog</span>
<ul class="mdl-menu mdl-menu--bottom-left mdl-js-menu mdl-js-ripple-effect"
data-mdl-for="blog_drp">
<li class="mdl-menu__item"><a href="blog-list.html">Blog List</a></li>
<li class="mdl-menu__item"><a href="image-blog-post.html">Image Blog Post</a></li>
<li class="mdl-menu__item"><a href="gallery-blog-post.html">Gallery Blog Post</a></li>
<li class="mdl-menu__item"><a href="youtube-blog-post.html">Youtube Blog Post</a></li>
<li class="mdl-menu__item"><a href="vimeo-blog-post.html">Vimeo Blog Post</a></li>
<li class="mdl-menu__item"><a href="audio-blog-post.html">Audio Blog Post</a></li>
</ul>
</li> -->
<!-- <li><a class="mdl-navigation__link" data-scroll href="#references_sec">references</a></li> -->
<li><a class="mdl-navigation__link" data-scroll href="#contact_sec">contact</a></li>
</ul>
<!-- Right aligned menu below button -->
<!-- <button id="demo-menu-lower-right"
class="mdl-button mdl-js-button mdl-button--icon ver-more-btn">
<i class="material-icons">more_vert</i>
</button>
<ul class="mdl-menu mdl-menu--bottom-right mdl-js-menu mdl-js-ripple-effect"
data-mdl-for="demo-menu-lower-right">
<li class="mdl-menu__item"><a href="#"><i class="zmdi zmdi-download font-lime pr-10"></i>Download Ticket</a></li>
<li class="mdl-menu__item"><a href="mailto:[email protected]"><i class="zmdi zmdi-email-open font-pink pr-10"></i>Contact Us</a></li>
<li class="mdl-menu__item"><a href="callto:12345678910"><i class="zmdi zmdi-phone font-indigo pr-10"></i>+1 234 567 89 10</a></li>
</ul> -->
</div>
</header>
<!--/Top Header-->
<!--Left Sidebar-->
<div class="mdl-layout__drawer">
<div class="nicescroll-bar">
<div class="drawer-profile-wrap pt-40 pb-45">
<span class="candidate-name block mb-10 text-center">Rann-Neeti'17</span>
<ul class="social-icons">
<li>
<a class="facebook-link" href="https://www.facebook.com/Rannneetivqv/?ref=br_rs">
<i id="tt11" class="zmdi zmdi-facebook"></i>
<div class="mdl-tooltip" data-mdl-for="tt11">
facebook
</div>
</a>
</li>
</ul>
</div>
<div class="mdl-scroll-spy-2">
<ul class="mdl-navigation">
<li>
<a class="mdl-navigation__link border-top-sep" data-scroll href="#body">
<i class="zmdi zmdi-border-color pr-15"></i>
<span class="font-capitalize">about</span>
</a>
</li>
<li>
<a class="mdl-navigation__link border-top-sep" data-scroll href="#interest_sec">
<i class="zmdi zmdi-border-color pr-15"></i>
<span class="font-capitalize">sports</span>
</a>
</li>
<li>
<a class="mdl-navigation__link border-top-sep" data-scroll href="#schedule_sec">
<i class="zmdi zmdi-calendar-note pr-15"></i>
<span class="font-capitalize">schedule</span>
</a>
</li>
<li>
<a class="mdl-navigation__link border-top-sep" data-scroll href="#speaker_sec">
<i class="zmdi zmdi-mic pr-15"></i>
<span class="font-capitalize">Our Team </span>
</a>
</li>
<!-- <li>
<a class="mdl-navigation__link border-top-sep" data-scroll href="#price_sec">
<i class="zmdi zmdi-library pr-15"></i>
<span class="font-capitalize">pricing</span>
</a>
</li> -->
<li>
<a class="mdl-navigation__link border-top-sep" data-scroll href="#client_sec">
<i class="zmdi zmdi-case pr-15"></i>
<span class="font-capitalize">sponsors</span>
</a>
</li>
<!-- <li>
<a class="mdl-navigation__link border-top-sep" href="javascript:void(0);" data-toggle="collapse" data-target="#blog_dr">
<i class="zmdi zmdi-tag-more pr-15"></i>
<span class="font-capitalize">blog</span>
</a>
<ul id="blog_dr" class="collapse collapse-level-1">
<li><a class="mdl-navigation__link border-top-sep" href="blog-list.html">Blog List</a></li>
<li><a class="mdl-navigation__link border-top-sep" href="image-blog-post.html">Image Blog Post</a></li>
<li><a class="mdl-navigation__link border-top-sep" href="gallery-blog-post.html">Gallery Blog Post</a></li>
<li><a class="mdl-navigation__link border-top-sep" href="youtube-blog-post.html">Youtube Blog Post</a></li>
<li><a class="mdl-navigation__link border-top-sep" href="vimeo-blog-post.html">Vimeo Blog Post</a></li>
<li><a class="mdl-navigation__link border-top-sep" href="audio-blog-post.html">Audio Blog Post</a></li>
</ul>
</li> -->
<li>
<a class="mdl-navigation__link border-top-sep" data-scroll href="#portfolio_sec">
<i class="zmdi zmdi-bookmark pr-15"></i>
<span class="font-capitalize">gallery</span>
</a>
</li>
<!-- <li>
<a class="mdl-navigation__link border-top-sep" data-scroll href="#references_sec">
<i class="zmdi zmdi-bookmark pr-15"></i>
<span class="font-capitalize">references</span>
</a>
</li> -->
<li>
<a class="mdl-navigation__link border-top-sep border-bottom-sep" data-scroll href="#contact_sec">
<i class="zmdi zmdi-email pr-15"></i>
<span class="font-capitalize">contact & venue</span>
</a>
</li>
</ul>
</div>
<div class="drawer-footer mt-50 mb-30 text-center">
<p class="font-12 mt-10">Rann-Neeti © 2017.</p>
</div>
</div>
</div>
<!--/Left Sidebar-->
<!--Main Content-->
<div class="main-content relative">
<div class="container">
<!--About Sec-->
<section class="about-sec mt-180 mt-sm-120 mb-30">
<div class="row">
<div class="col-lg-12">
<div class="mdl-card mdl-shadow--2dp relative">
<div id="carousel" class="carousel slide carousel-fade banner-carousel" data-ride="carousel">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</div>
<div class="about-overlay"></div>
<div class="row about-content-wrap">
<div class="col-xs-12" style="margin-top: -5%;">
<div class="info-wrap text-center mt-40">
<h1 class="font-pink" style="font-size: 200%">INTERNET ACADEMY<span class="font-white high-text" style="font-size: 180%;"></span></h1>
<P style="color: white; font-size: 150%;">presents</P></br>
<h1 class="font-pink" style="font-size: 200%"><span class="font-white high-text" style="font-size: 180%;">Rann-Neeti'17</span></h1>
<h5 class="mt-20">
<span class="relative mr-5 inline-block">
<i id="datepickopn" class="zmdi zmdi-calendar-check font-white pl-5"></i>
<span id="datepicker1" class="datepicker block"></span>
</span>
<span>30 September - 2 October 2017 </span>
</h5>
<!--Counter-->
<div id="countdown" class="countdown font-white mb-25" style="font-size: 170%;">
<span class="first-part-count">
<span class="days">00</span>
<span>days</span>
<span class="time-sep">:</span>
<span class="hours">00</span>
<span>hours</span>
</span>
<span class="second-part-count">
<span class="time-sep">:</span>
<span class="minutes">00</span>
<span>min</span>
<span class="time-sep">:</span>
<span class="seconds">00</span>
<span>sec</span>
</span>
</div>
<!--Counter-->
<div class="mt-50">
<a class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect bg-indigo font-white mr-10" data-toggle="modal" data-target="#responsive_modal_1" href="#">Registration Closed !</a>
<!-- <a class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect bg-indigo font-white" href="#" data-toggle="modal" data-target="#responsive_modal_2">subscribe</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Booking Form Modal-->
<div id="responsive_modal_1" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">REGISTRATION CLOSED !</h4>
<h4 class="mb-10 font-unsetcase">For any query, Contact : Lovedeep Singh</h4>
<p>Organising Secretary, Rann-Neeti'17</p>
<p>Phone No : 7832033542</p>
<ul class="social-icons mt-15">
<li>
<a class="facebook-link" href="https://www.facebook.com/aldee95">
Find on : <i class="zmdi zmdi-facebook"></i>
</a>
</li>
</ul>
<!-- <h4 class="mb-10 font-unsetcase">To be opened soon !</h4> -->
<!-- <iframe src="https://docs.google.com/forms/d/e/1FAIpQLScO22TQzdChlrp8fI4eEd5TyO9yL4UxJvQuMHvVWTHbklnArw/viewform?embedded=true" width="760" height="600" frameborder="0" marginheight="0" marginwidth="0">Loading...</iframe> -->
<!-- <h4 class="mb-10 font-unsetcase" style="font-size: 230%; text-align: center;">Registration Form</h4></br>
<h4 class="mb-10 font-unsetcase" style="font-size: 100%; text-align: center;">Rann-Neeti'17, IIT Mandi</h4></br>
<form name="registration-form" id="syl" class="form-horizontal booking-form mb-30" >
<div class="form-group">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<label class="mdl-textfield__label" for="inputEmail_1" style="color: white; font-size: 120%;">Email Address*</label></br>
<input autocomplete="off" class="mdl-textfield__input" type="email" id="email" name="inputEmail" required>
</div>
</div>
<div class="form-group">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<label class="mdl-textfield__label" for="inputName_1" style="color: white; font-size: 110%;">Name of College Representative*</label></br>
<input autocomplete="off" class="mdl-textfield__input" type="text" id="name" name="inputName" required>
</div>
</div>
<div class="form-group">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<label class="mdl-textfield__label" for="inputEmail_1" style="color: white; font-size: 120%;">Preposition of Representative</label></br>
<input autocomplete="off" class="mdl-textfield__input" type="text" id="prep" name="inputEmail">
</div>
</div>
<div class="form-group">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<label class="mdl-textfield__label" for="inputEmail_1" style="color: white; font-size: 120%;">Contact Number*</label></br>
<input autocomplete="off" class="mdl-textfield__input" type="number" id="contact" name="inputEmail" required>
</div>
</div>
<div class="form-group">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<label class="mdl-textfield__label" for="inputEmail_1" style="color: white; font-size: 120%;">College Name *</label></br>
<input autocomplete="off" class="mdl-textfield__input" type="text" id="college" name="inputEmail" required>
</div>
</div></br>
<h4 class="mb-10 font-unsetcase" style="font-size: 150%">Games to be registered</h4>
<div class="form-group mt-15" style="color: white;">
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="checkbox-2">
<input type="checkbox" id="checkbox-2" class="mdl-checkbox__input">
<span class="mdl-checkbox__label" style="font-size: 120%" >Cricket</span>
</label></br>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="checkbox-3">
<input type="checkbox" id="checkbox-3" class="mdl-checkbox__input">
<span class="mdl-checkbox__label" style="font-size: 120%">Football</span>
</label></br>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="checkbox-4">
<input type="checkbox" id="checkbox-4" class="mdl-checkbox__input">
<span class="mdl-checkbox__label" style="font-size: 120%">Table Tennis</span>
</label></br>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="checkbox-5">
<input type="checkbox" id="checkbox-5" class="mdl-checkbox__input">
<span class="mdl-checkbox__label" style="font-size: 120%">Basketball</span>
</label></br>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="checkbox-6">
<input type="checkbox" id="checkbox-6" class="mdl-checkbox__input">
<span class="mdl-checkbox__label" style="font-size: 120%">Volleyball</span>
</label></br>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="checkbox-7">
<input type="checkbox" id="checkbox-7" class="mdl-checkbox__input">
<span class="mdl-checkbox__label" style="font-size: 120%">Lawn Tennis</span>
</label></br>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="checkbox-8">
<input type="checkbox" id="checkbox-8" class="mdl-checkbox__input">
<span class="mdl-checkbox__label" style="font-size: 120%">Badminton</span>
</label></br>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="checkbox-9">
<input type="checkbox" id="checkbox-9" class="mdl-checkbox__input">
<span class="mdl-checkbox__label" style="font-size: 120%">Hockey</span>
</label></br>
<label class="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect" for="checkbox-10">
<input type="checkbox" id="checkbox-10" class="mdl-checkbox__input">
<span class="mdl-checkbox__label" style="font-size: 120%">Chess</span>
</label></br>
</div>
<!-- <div class="form-group mt-15">
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-b">
<input type="radio" id="option-b" class="mdl-radio__button" name="options" value="b" >
<span class="mdl-radio__label">Boys</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="option-g">
<input type="radio" id="option-g" class="mdl-radio__button" name="options" value="g">
<span class="mdl-radio__label">Girls</span>
</label>
</div> --><!-- </br>
<div class="form-group mt-25">
<div class="align-center">
<button class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect bg-indigo font-white">
register
</button>
</div>
</div></br>
<div id="done" style="color: white; text-align: center; font-size: 200%"></div></br>
<div id="done1" style="color: white; text-align: center; font-size: 150%"></div>
</form>-->
</div>
</div>
</div>
</div>
</div>
<!-- <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script>
$(document).ready(function() {
$("#syl").submit(function(e){
e.preventDefault();
sub();
});
});
var sports;
sports = ['Cricket', 'Football', 'Table%20Tennis', 'Basketball', 'Volleyball', 'Lawn%20Tennis', 'Badminton', 'Hockey', 'Chess'];
function sub(){
var email = $("#email").val().trim();
var name = $("#name").val().trim();
var contact = $("#contact").val().trim();
var prep = $("#prep").val().trim();
var college = $("#college").val().trim();
var sport="";
for (var i = 2; i <= 10; i++) {
var check = "#checkbox-"+i;
if($(check).is(':checked'))
{
sport+="&entry.74662257="+sports[i-2];
}
}
var data="entry.2018383927="+email+"&entry.978770651="+name+"&entry.1556548791="+prep+"&entry.699464869="+contact+"&entry.1085652366="+college+"&entry.74662257_sentinel="+sport+"&fvv=1&draftResponse=%5Bnull%2Cnull%2C%22-2511093891372814215%22%5D%0D%0A&pageHistory=0&fbzx=-2511093891372814215";
$.ajax({
method: 'post',
data: data,
url: 'https://docs.google.com/forms/d/e/1FAIpQLScO22TQzdChlrp8fI4eEd5TyO9yL4UxJvQuMHvVWTHbklnArw/formResponse'
});
$("#done").html("Thanks for registering.");
$("#done1").html("Your form has been submitted");
setTimeout(function(){location.reload();},1500);
};
// entry.2018383927=test&entry.978770651=test&entry.1556548791=test&entry.699464869=789&entry.1085652366=test&entry.74662257_sentinel=&entry.74662257=Cricket&entry.74662257=Football&entry.74662257=Table+Tennis&entry.74662257=Basketball&fvv=1&draftResponse=%5Bnull%2Cnull%2C%224049088726256836000%22%5D%0D%0A&pageHistory=0&fbzx=4049088726256836000
</script> -->
<!-- <!-- <!-- <!--Notify Form Modal-->
<!-- <div id="responsive_modal_2" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Sign Up for all the Updates</h4>
<form id="notifyMe" name="registration-form" method="post" action="notify-me.php" class="form-horizontal registration-form mb-30">
<div class="form-group">
<div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
<input autocomplete="off" class="mdl-textfield__input" name="email" id="email" type="email" required>
<label class="mdl-textfield__label" for="email">email*</label>
</div>
</div>
<div class="form-group">
<div class="align-center">
<button type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect bg-pink font-white">
Notify Me
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!--/About Sec-->
<!--Event Sec-->
<section id="event_sec" class="event-sec sec-pad-top-sm">
<h2 class="mb-30">about the Fest</h2>
<div class="mdl-card mb-30 pb-15">
<div class="row">
<div class="col-xs-12">
<div class="about-event-wrap">
<p class="">It is that time of the year when champions rise from the ashes on the hallowed grounds of IIT Mandi. Yes! IIT Mandi will be organising it's annual inter-college sports meet RANN-NEETI ’17 from 30 September - 2 October 2017.
Rann-neeti over the years has proved to be a fierce battleground for various colleges to show their might in the field of sports. With over 500 participants (increasing manifold each year), Rann-neeti is just the perfect event to catch glimpse of the immense sporting potential that we possess as a nation. </p>
</div>
</div>
</div>
<div class="row mt-40">
<div class="col-md-3 col-sm-6 col-xs-12 mb-30">
<div class="">
<i class="zmdi zmdi-mic font-indigo profile-icon"></i>
<h4 class="mb-15"><span class="counter-anim">20</span><span>+</span> Team Members </h4>
<!-- <p>A mobile first responsive template with material design.</p> -->
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 mb-30">
<div class="">
<i class="zmdi zmdi-device-hub font-pink profile-icon"></i>
<h4 class="mb-15"><span class="counter-anim">15</span><span>+</span> Sports</h4>
<!-- <p>Comes with light and dark options. Suitable for the universe.</p> -->
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 mb-30">
<div class="">
<i class="zmdi zmdi-time font-teal profile-icon"></i>
<h4 class="mb-15"><span class="counter-anim">100</span><span>+</span> hours</h4>
<!-- <p>Extra ordinary setting pannel with lots of awesome features.</p> -->
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 mb-30">
<div class="">
<i class="zmdi zmdi-seat font-lime profile-icon"></i>
<h4 class="mb-15"><span class="counter-anim">500</span><span>+</span> Participants</h4>
<!-- <p>Easy customizable framework using bootstrap sass.</p> -->
</div>
</div>
</div>
</div>
</section>
<!--Event Sec-->
<!--Highlights Sec-->
<section id="interest_sec" class="interest-sec sec-pad-top-sm">
<h2 class="mb-30">Sports</h2>
<div class="row">
<div id="responsive_modal_2" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Rule for Internet Academy presents Rann-Neeti'17</h4></br>
<h4 class="mb-10 font-unsetcase">CRICKET</h4></br>
<p>1. T20 Format will be followed.</p></br>
<p>2. Matches shall be played according to the ICC Rules in force, as adopted from
time to time by the Board of Control for Cricket in India, unless otherwise
modified.</p></br>
<p>3. All the matches shall be conducted on knock out basis and each side is
allowed to complete 20 overs unless the opposing team is dismissed earlier.
Each bowler can bowl a maximum of 4 overs. The semi-finals and final will
also be of 20 overs.</p></br>
<p>4. The bowling team is given 90 minutes to complete its quota of 20 over's. The
penalty for every short over will be decided by the Umpires prior to the meet.</p></br>
<p>5. No spike shoes will be allowed to use by the players.</p></br>
<p>6. If there is a tie, SUPER OVER will be played.</p></br>
<p>7. The umpires are empowered to rearrange the number of overs by each side
in the event of a delayed start or if play is suspended.</p></br>
<p>8. After the league matches if all the teams of a pool have equal points, then on
the basis of the net run rate better team will be placed for the Semi Finals.</p></br>
<p>9. If there is a tie during the Semi Final matches (knock out) super over rules will
be implemented.</p></br>
<p>10. Each team shall submit a list of players with their COLLEGE IDs( not
exceeding sixteen) who may participate in the tournament. Not more than 16
certificates shall be awarded to a team. Failing to provide legitimate IDs will
not allow that player to participate.</p></br>
<p>11. In case ,any team is found playing player who doesn’t belong to that particular
college, that team will be banned from the tournament with immediate effect
and no PRIZE will be awarded in any case.</p></br>
<h4 class="mb-10 font-unsetcase">RULES REGARDING THE POSTPONEMENT OF CRICKET MATCHES
AFFECTED BY RAIN</h4></br>
<p>1. In case of heavy rain, decision taken by umpires will be considered as final.If
match would not be possible,then teams will share the points awarded for the
match.</br></br>
2. In case of any discrepancy during finals or semi-finals, winner will be decided
on the basis of point tally of league matches strictly.</br></br>
3. Teams need to report to the ground 15 minutes before the scheduled start
time. Walkover will be given to a team if the opponent team is not able to
reach the ground within 15 minutes of the scheduled time.</br></br></p>
<h4 class="mb-10 font-unsetcase">ENTRY FEES PER TEAM - ₹2000</h4></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 mb-30">
<a data-toggle="modal" data-target="#responsive_modal_2" href="#">
<div style="background:url(img/1.jpg); border-radius: 100%; background-size: 100% 100%;" class="mdl-card text-center pa-40 pt-60 pb-60">
<span style="font-weight: bold;color: black;"></span>
</div></a>
</div>
<div id="responsive_modal_4" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Rule for Internet Academy presents Rann-Neeti'17</h4></br>
<h4 class="mb-10 font-unsetcase">FOOTBALL</h4></br>
<p>1. Matches shall be played according to the rules of FIFA as adopted from time to time by the All India Football Federation unless otherwise modified.</p></br>
<p>2. All matches will be in knockout phase.</p></br>
<p>3. The duration of each match shall be 70 minutes. (35-10-35)</p></br>
<p>4. In case of draw between teams, two periods of extra time will be played (each extra time of 10 minutes with 2 minutes break). If still draw situation occurs, penalty shootouts shall occur.</p></br>
<p>5. Every team shall submit a list of players, not exceeding 16, who may participate in the tournament. Not more than 16 certificates shall be awarded to a team.</p></br>
<p>6. There will be 11 players on the field per team at a time.</p></br>
<p>7. A team can substitute a maximum of 3 players in a match.</p></br>
<h4 class="mb-10 font-unsetcase">ENTRY FEES PER TEAM - ₹1000</h4></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 mb-30">
<a data-toggle="modal" data-target="#responsive_modal_4" href="#">
<div style="background:url(img/2.jpg); border-radius: 100%; background-size: 100% 100%;" class="mdl-card text-center pa-40 pt-60 pb-60">
<span style="font-weight: bold;color: black;"></span>
</div></a>
</div>
<div id="responsive_modal_5" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Rule for Internet Academy presents Rann-Neeti'17</h4></br>
<h4 class="mb-10 font-unsetcase">TABLE TENNIS</h4>
<p>1. The rules of the tournament of the International Table Tennis Federation as adopted from time to time by the Table Tennis Federation of India shall apply unless otherwise modified.</p></br>
<p>2. The tournament will be league stage for 5 team, top 2 teams will qualify further.</p></br>
<p>3. The tournament will be knockout of 8 teams.</p></br>
<p>4. Only 7 teams can register on first come first serve basis.</p></br>
<p>5. Each team will have a squad of 3 members and registration of member should be done.</p></br>
<h4 class="mb-10 font-unsetcase">ENTRY FEES PER TEAM - ₹1000</h4></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 mb-30">
<a data-toggle="modal" data-target="#responsive_modal_5" href="#"><div style="background:url(img/3.jpg); border-radius: 100%; background-size: 100% 100%;" class="mdl-card text-center pa-40 pt-60 pb-60">
<span style="font-weight: bold;color: black;"></span>
</div></a>
</div>
<div id="responsive_modal_6" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Rule for Internet Academy presents Rann-Neeti'17</h4></br>
<h4 class="mb-10 font-unsetcase">BASKETBALL</h4></br>
<h4 class="mb-10 font-unsetcase">General</h4></br>
<p>1. A team’s roster may have up to 12 players on it (along with their college IDs) for the entire event.</p></br>
<p>2. Once a player is enlisted into a team, he cannot switch teams.</p></br>
<p>3. Teams must be at their assigned court, ready to play, 15 minutes before the scheduled game time.</p></br>
<h4 class="mb-10 font-unsetcase">Game Rules</h4></br>
<p>1. All matches will be played as per League cum Knockout basis.</p></br>
<p>2. Match will not start till 5 players on both side are present on the court.</p></br>
<p>3. All matches will be having 4 quarters each of 10 minutes with a 2 minutes break in-between the quarters and 5 minutes break at half time. (10-2-10-5-10-2-10)</p></br>
<p>4. Teams will have total 4 timeouts (2 in each half).</p></br>
<p>5. If a match is tied, overtime of 5 minutes will be played till one team outscores the other.
Each team will be provided with only 1 timeout for the entire overtime.</p></br>
<p>6. Concerning game, FIBA rules will be followed for all matches.</p></br>
<p>7. Hanging from the rim is not allowed. Dunking is allowed but only during game time.</p></br>
<h4 class="mb-10 font-unsetcase">Player Uniform</h4></br>
<p>1. Jersey is compulsory. No shirts vs skins will be entertained.</p></br>
<p>2. Wearing any kind of accessory except for head bands, arm bands and knee caps is prohibited.</p></br>
<p>3. Only sports shoes are allowed. No sandals or crocs will be permitted.</p></br>
<h4 class="mb-10 font-unsetcase">ENTRY FEES PER TEAM - ₹1000</h4></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 mb-30">
<a data-toggle="modal" data-target="#responsive_modal_6" href="#"><div style="background:url(img/5.jpg); border-radius: 100%; background-size: 100% 100%;" class="mdl-card text-center pa-40 pt-60 pb-60">
<span style="font-weight: bold;color: black;"></span>
</div></a>
</div>
<div id="responsive_modal_7" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Rule for Internet Academy presents Rann-Neeti'17</h4></br>
<h4 class="mb-10 font-unsetcase">VOLLEYBALL</h4></br>
<p>1. Matches shall be played by the rules of the International Volleyball Federation [FIVB] as taken by the Volleyball Federation of India (VFI) shall be followed unless otherwise modified.</br></br>
2. The tournament will be league stage for both boys and girls followed by knockouts. Top team in each group of boys will qualify further and for girls top 2 teams will qualify further.</br></br>
3. All the matches shall be played on the best of 3 sets except for semis and finals which will be of 5 sets.</br></br>
4. Only 10 teams for boys and 6 teams for girls can register on first come first serve basis.</br></br>
5. Each team will have a squad of 11 members for boys and a squad of 9 members for girls.</br></br>
6. Every college shall submit a list of players, certificates shall be awarded as the above number given for respective squad.</br></br></p>
<h4 class="mb-10 font-unsetcase">General Rules:</h4></br>
<p>1. All participants need to come in proper kit, i.e, shorts (no three-fourths, denim short, tracks etc. are allowed). If any player does not come in proper kit or shoes, the player won’t be allowed to play the match.</br></br>
2. Teams are allowed to cheer their player but there should not be any hooting or jeering against other teams’ players.</br></br>
3. The decision of the referees and the umpires will be final and binding. No protests would be entertained.</br></br></p>
<h4 class="mb-10 font-unsetcase">ENTRY FEES PER TEAM - ₹1000</h4></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 mb-30">
<a data-toggle="modal" data-target="#responsive_modal_7" href="#"><div style="background:url(img/4.jpg); border-radius: 100%; background-size: 100% 100%;" class="mdl-card text-center pa-40 pt-60 pb-60">
<span style="font-weight: bold;color: black;"></span>
</div></a>
</div>
<div id="responsive_modal_8" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Rule for Internet Academy presents Rann-Neeti'17</h4></br>
<h4 class="mb-10 font-unsetcase">LAWN TENNIS</h4>
<p>1. The rules of the International Tennis Federation as adopted from time to time by the All India Lawn Tennis Association shall apply, unless otherwise modified.</p></br>
<p>2. The tournament will be league stage for 5 teams, top 2 teams will qualify further.</p></br>
<p>3. The tournament will be knockout of 8 teams.</p></br>
<p>4. Only 7 teams can register on first come first serve basis.</p></br>
<p>5. Each team will have a squad of 3 members and registration of member should be done.</p></br>
<h4 class="mb-10 font-unsetcase">ENTRY FEES PER TEAM - ₹1000</h4></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 mb-30">
<a data-toggle="modal" data-target="#responsive_modal_8" href="#"><div style="background:url(img/7.jpg); border-radius: 100%; background-size: 100% 100%;" class="mdl-card text-center pa-40 pt-60 pb-60">
<span style="font-weight: bold;color: black;"></span>
</div></a>
</div>
<div id="responsive_modal_9" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Rule for Internet Academy presents Rann-Neeti'17</h4></br>
<h4 class="mb-10 font-unsetcase">BADMINTON</h4>
<h4 class="mb-10 font-unsetcase">MEN</h4>
<p>1.Format of Match: Best of 5 games (in the order) - singles, singles,
doubles, singles, doubles.</p></br>
<p>2.Each game will have best of 3 sets (21 points each).</p></br>
<p>3.Team line-up for every match must be submitted before the match.
Any request to change the lineup wonʼt be entertained after
submission of the list.</p></br>
<p>4.Latest BWF rules will be followed for every game.</p></br>
<p>5. A team minimum of 4 players and maximum 5 players is required to
register.</p></br>
<p>6. Each player can play in two games at max(one singles and one
doubles).</p></br>
<p>7. All matches will be played with yonex AS2 feather shuttle.</p></br>
<p>8.In case of any discrepancy or conflict, the decision of the
organizers/officials shall be final.</p></br>
<h4 class="mb-10 font-unsetcase">ENTRY FEES PER TEAM - ₹1500</h4></br>
<h4 class="mb-10 font-unsetcase">WOMEN</h4>
<p>1. Format of Match: Best of 3 games (in the order) - singles, doubles,
singles.</p></br>
<p>2. Each game will have best of 3 sets (21 points each).</p></br>
<p>3. Team line-up for every match must be submitted before the match.
Any request to change the line up wonʼt be entertained after
submission of the list.</p></br>
<p>4. Latest BWF rules will be followed for every game.</p></br>
<p>5. A team minimum of 2 players and maximum 3 players is required to
register.</p></br>
<p>6. Each player is allowed to play in two games (one singles and one
doubles).</p></br>
<p>7. Each match will be played with yonex AS2 feather shuttle.</p></br>
<p>8. In case of any discrepancy or conflict, the decision of the
organizers/officials shall be final.</p></br>
<h4 class="mb-10 font-unsetcase">ENTRY FEES PER TEAM - ₹1000</h4></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 mb-30">
<a data-toggle="modal" data-target="#responsive_modal_9" href="#"><div style="background:url(img/6.jpg); border-radius: 100%; background-size: 100% 100%;" class="mdl-card text-center pa-40 pt-60 pb-60">
<span style="font-weight: bold;color: black;"></span>
</div></a>
</div>
<div id="responsive_modal_10" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Schedule to be updated soon !</h4>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 mb-30">
<a data-toggle="modal" data-target="#responsive_modal_10" href="#"><div style="background:url(img/10.jpg); border-radius: 100%; background-size: 100% 100%;" class="mdl-card text-center pa-40 pt-60 pb-60">
<span style="font-weight: bold;color: black;"></span>
</div></a>
</div>
<div id="responsive_modal_11" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Rule for Internet Academy presents Rann-Neeti'17</h4></br>
<h4 class="mb-10 font-unsetcase">CHESS</h4>
<p>1. Matches shall be played according to the rules specified by the FIDE handbook.</p></br>
<p>2. The tournament will be league stage for 5 teams, top 2 teams will qualify further.</p></br>
<p>3. Only 4 teams can register on first come first serve basis.</p></br>
<p>4. Each team will have a squad of 5 members and registration of member should be done.</p></br>
<h4 class="mb-10 font-unsetcase">ENTRY FEES PER TEAM - ₹1000</h4></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 mb-30">
<a data-toggle="modal" data-target="#responsive_modal_11" href="#"><div style="background:url(img/8.jpg); border-radius: 100%; background-size: 100% 100%;" class="mdl-card text-center pa-40 pt-60 pb-60">
<span style="font-weight: bold;color: black;"></span>
</div></a>
</div>
<div id="responsive_modal_12" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Schedule to be updated soon !</h4>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 mb-30">
<a data-toggle="modal" data-target="#responsive_modal_12" href="#"><div style="background:url(img/9.jpg); border-radius: 100%; background-size: 100% 100%;" class="mdl-card text-center pa-40 pt-60 pb-60">
<span style="font-weight: bold;color: black;"></span>
</div></a>
</div>
<div id="responsive_modal_13" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Rule for Internet Academy presents Rann-Neeti'17</h4></br>
<h4 class="mb-10 font-unsetcase">ATHLETICS</h4>
<p>1. Matches shall be played according to the rules of respective International Federation as
adopted from time to time by the All India Federation of the respective sport unless
otherwise modified.</p></br>
<p>2. Decision made by Judges/Referee will be final and binding.</p></br>
<p>3. Rules and schedule are subject to change in the spirit of game and due to external
factors.</p></br>
<p>4. All participants must be present with their Institute and Rann-neeti ID cards at the
commencement of the match.</p></br>
<p>5. The competition shall be conducted under the International Athletics Federation rules
as adopted from time to time by AFI, unless otherwise modified.</p></br>
<p>6. Each college will be entitled to enter not more than <b>two competitors per event.</b></p></br>
<p>7. An athlete is allowed to participate in a <b>maximum of 3 events.</b></p></br>
<p>8. As far as possible, changes, if any, should be intimated fifteen minutes before the start
of the event.</p></br>
<p>9. The competitions will be held for the following events:</p></br>
<h4 class="mb-10 font-unsetcase">MEN</h4>
<p>1. 100m</p>
<p>2. 1500m</p>
<p>3. 5000m</p>
<p>4. Long Jump</p>
<p>5. Triple Jump</p>
<p>6. Shot Put</p>
<p>7. Discuss Throw</p>
<p>8. Javelin throw</p></br>
<h4 class="mb-10 font-unsetcase">WOMEN</h4>
<p>1. 100m</br>
2. 1500m</br>
3. Long jump</br>
4. Shot put</br></p></br>
<p>10. The points for individual positions for I, II, III and IV are 5, 3, 2, 1 respectively.</p></br>
<p>11. The sum total of points secured in all the events in athletics by a college will determine
1st, 2nd and 3rd positions in Athletics.</p></br>
<p>12. Best athlete for both Male and Female will be decided by the maximum number of
points obtained by an athlete in the Athletics championship. In case of a tie for best
athlete, the athlete who has broken the most number of meet records would be
recognized. If the tie is still unresolved, award is given to the players having better team
category rank.</p></br>
<p>13. Certificate shall be awarded to the first three places in all the athletic events.</p></br>
<p>14. In any event if there are less than 3 entries, that event will be considered as cancelled.</p></br>
<p>15. In case of a tie for an individual event, points will be shared by both athletes and
colleges as shown in the following table. If the number of tied players/teams are more
than 4, 4 players/teams will be chosen by lot and then points distributed accordingly.</p></br>
<table class="mdl-data-table mdl-js-data-table mdl-shadow--2dp">
<thead>
<tr>
<th class="mdl-data-table__cell--non-numeric">Positions tied for</th>
<th>Number </th>
<th>of tied</th>
<th>playes/teams</th>
</tr>
</thead>
<tbody>
<tr>
<td class="mdl-data-table__cell--non-numeric"></td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">I</td>
<td>4.0</td>
<td>3.33</td>
<td>2.75</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">II</td>
<td>2.5</td>
<td>2.0</td>
<td>1.5</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">III</td>
<td>1.5</td>
<td>1.0</td>
<td>0.75</td>
</tr>
<tr>
<td class="mdl-data-table__cell--non-numeric">IV</td>
<td>0.5</td>
<td>0.33</td>
<td>0.25</td>
</tr>
</tbody>
</table></br>
<p>16. In case of tie for the Athletics Championship for men and women, points will be shared
between the teams. For example, if in men category, two teams tie for 2nd position,
then both teams would get 10 points and the next team would get 4 points.</p></br>
<h4 class="mb-10 font-unsetcase">ENTRY FEES PER EVENT - ₹100</h4></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-2 col-sm-4 col-xs-6 mb-30">
<a data-toggle="modal" data-target="#responsive_modal_13" href="#"><div style="background:url(img/11.jpg); border-radius: 100%; background-size: 100% 100%;" class="mdl-card text-center pa-40 pt-60 pb-60">
<span style="font-weight: bold;color: black;"></span>
</div></a>
</div>
</div>
</section>
<!--/Highlights Sec-->
<!--Schedule Sec-->
<section id="schedule_sec" class="schedule-sec sec-pad-top-sm">
<h2 class="mb-30">Schedule and Fixtures</h2>
<div id="responsive_modal_3" class="modal fade" tabindex="-1" role="dialog" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
</div>
<div class="modal-body">
<div class="mdl-card">
<h4 class="mb-10 font-unsetcase">Fixtures for Sports</h4>
<form method="get" action="fixtures/Cricket-FIXTURES.pdf">
<div class="form-group">
<div class="text-center mt-20 mb-30">
<button type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect bg-indigo margin-lr-auto view-more" data-toggle="modal" href="#">cricket</button>
</div>
</div>
</form>
<form method="get" action="fixtures/Football-Fixture.pdf">
<div class="form-group">
<div class="text-center mt-20 mb-30">
<button type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect bg-indigo margin-lr-auto view-more" data-toggle="modal" href="#">football</button>
</div>
</div>
</form>
<form method="get" action="fixtures/tt.pdf">
<div class="form-group">
<div class="text-center mt-20 mb-30">
<button type="submit" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect bg-indigo margin-lr-auto view-more" data-toggle="modal" href="#">table tennis</button>
</div>
</div>
</form>