-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.html
63 lines (55 loc) · 2.73 KB
/
rules.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="An Online Cryptic Hunt! Solve it if you can :)">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300&family=Roboto:wght@100&family=Swanky+and+Moo+Moo&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="rules.css">
<script src="script.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap" rel="stylesheet">
<title>Rules | Clueminati</title>
</head>
<body>
<header>
<nav>
<a href="javascript:void(0);" onclick="navbar()"><img src="menu.png" alt="Menu" id="menu"></a>
<ul>
<a href="/"><li>Home</li></a>
<a href="rules.html"><li>Rules</li></a>
<a href="leaderboard.html"><li>Leaderboard</li></a>
</ul>
<a href="editorials.html"><span id="navreg">Editorials</span></a>
</nav>
<div id="navlinks">
<a href="/">Home</a><br>
<a href="rules.html">Rules</a><br>
<a href="leaderboard.html">Leaderboard</a><br>
<a href="editorials.html">Editorials</a>
</div>
</header>
<main>
<h1>Rules</h1>
<div id="textbox">
<ul>
<li>1. There are 11 levels in the hunt. The more you do, better is your rank.</li><br>
<li>2. The hunt is timed. In case of a rank clash, person who solved earlier would be assigned better rank.</li><br>
<li>3. Hints will be released to all rounds at an interval of 15 minutes on the Leaderboard page itself.</li><br>
<li>4. This is an INDIVIDUAL event. Discussion and solving in groups is not allowed.</li><br>
<li>5. Do NOT share your Registration Number with anyone. It is your password to participate in the event.</li><br>
<li>6. Don't waste time trying to hack website or stuff. We would know it.</li><br>
<li>7. If you try to jump a level, you would be instantly disqualified.</li><br>
<li>8. Prizes would be announced later but they are going to be awesome. You can count on us ;) </li><br>
<li>9. The hunt will start at 8:00 PM on 13th March, 2022 and will end at 11:00 PM on 13th March, 2022 (IST).</li>
</ul>
</div>
</main>
<footer>
© 2022 Copyright: <a href="https://shashank.biz" target="_blank">Shashank Mahawar</a>
</footer>
</body>
</html>