This repository was archived by the owner on Jun 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgeneralrules.html
More file actions
93 lines (88 loc) · 4.3 KB
/
generalrules.html
File metadata and controls
93 lines (88 loc) · 4.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=yes"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<title>General Rules</title>
<link rel="stylesheet" type="text/css" href="assets/css/naveffect.css">
<link rel="stylesheet" type="text/css" href="assets/css/generalrules.css">
</head>
<body>
<div class="container">
<!-- This checkbox will give us the toggle behavior, it will be hidden, but functional -->
<input id="toggle" type="checkbox">
<!-- IMPORTANT: Any element that we want to modify when the checkbox state changes go here, being "sibling" of the checkbox element -->
<!-- This label is tied to the checkbox, and it will contain the toggle "buttons" -->
<label class="toggle-container" for="toggle">
<!-- If menu is open, it will be the "X" icon, otherwise just a clickable area behind the hamburger menu icon -->
<span class="button button-toggle"></span>
</label>
<!-- The nav menu -->
<nav class="nav">
<a class="nav-item" href="index.html">Home</a>
<a class="nav-item" href="aboutus.html">About Us</a>
<a class="nav-item" href="events.html">Events</a>
<a class="nav-item" href="shield.html">KJSCE Shield</a>
<a class="nav-item" href="generalrules.html">General Rules</a>
<a class="nav-item" href="parvaah.html">Parvaah</a>
<a class="nav-item" href="sponsors.html">Sponsors</a>
<a class="nav-item" href="contactus.html">Contact Us</a>
<!-- <a class="nav-item" href="">Settings</a> -->
<!-- <a id="navlogo" class="nav-item" href=""><img src="logo.png" style="height: 70px; width: auto;"></a> -->
</nav>
<!-- Just dummy content like in the animated gif -->
<div id="navlogo"><a href="index.html"><img src="dummy.png"></a></div>
</div>
<div class="content">
<div class="main">
<h1>General Rules</h1>
<p></p>
<ul>
<li>Participants will be allowed to enter the campus only on producing their valid College IDs along with another ID Proof. Participants must also carry their participation receipts.
<br>
</li>
<li>No vehicles will be allowed inside the campus.
<br>
</li>
<li>Reporting time for any event 3 hours prior to the event.Teams must report latest by 1 hour prior to the event. Points will be deducted if the team fails to report on time.
<br>
</li>
<li>Vulgarity and Foul Language in any form will not be tolerated and will lead to instant disqualification.
<br>
</li>
<li>Decency of dressing must be maintained at all times. Clothing should cover torso to knees. No sheers and tears are allowed.
<br>
</li>
<li>Lifts, touching or sensuality is not permitted.
<br>
</li>
<li>Participants are not allowed to reveal their college name before or during the competition to anyone except the event co-ordinator.
<br>
</li>
<li>Frisking will be conducted on entering the fest arena. The following things are not allowed inside the campus. On finding these items, they will be confiscated and may lead to disqualification.
<br>
</li> - Cigarettes, cigars, or any form of tobacco.
<br> - Narcotics and alcohol.
<br> - Perfumes and Deodorants or any other flammable objects.
<br> - Sharp objects of any kind.
<br> - Lighters and Matchboxes.
<br> - Eatables and water.
<br>
<li>Judges decision is final. Malpractice of any form will lead to disqualification.
<br>
</li>
<li>All participants must collect their certificates within two weeks of the festival.
<br>
</li>
<li>Every participant will be issued with a participation receipt. If the receipt is damaged, lost or replaced, the participant will be debarred from entering the event.
<br>
</li>
<li>Decision of the organizing committee will be final regarding any other issues.</li>
</ul>
<p></p>
</div>
</div>
</body>
</html>