-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.html
127 lines (117 loc) · 5.65 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Meta tags for search engines-->
<meta name="description" content="Cricket, The gentle men game.">
<meta name="keywords"
content="Cricket, sport, exercise cricket knowledge, know your cricket">
<!--Google fonts-->
<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=Libre+Bodoni:ital,wght@0,400..700;1,400..700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<title>Cricket Mastermind</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180"
href="assets/images/favicon/icons8-cricket-180.png">
<link rel="apple-touch-icon" type="image/png" sizes="32x32"
href="assets/images/favicon/icons8-cricket-32.png">
<link rel="icon" type="image/png" sizes="16x16"
href="assets/images/favicon/icons8-cricket-16.png">
</head>
<!-- Body -->
<body>
<div class="container">
<div id="wrapper">
<!-- Header -->
<header>
<h1 class="heading">
<a href="index.html">
<img class="logo"
src="assets/images/icons8-cricket.png"
alt="Crickset Mastermind Logo">
</a>
Cricket Mastermind
</h1>
</header>
<main>
<h3>Quiz RULES</h3>
<!-- List of Rules -->
<ul class="rules-list">
<li><strong>Time Limit</strong>
<p>Each question has a time limit of 15 seconds.
Once
the time runs out, you will automatically move
to
the next question.</p>
</li>
<li><strong>Scoring</strong>:
<p>You earn points by selecting the correct answer.
The
score will be displayed as "1 out of 10 correct"
where 1 is the number of correct answers and 10
is
the total number of questions.</p>
</li>
<li><strong>Navigation</strong>:
<p>You cannot go back to previous questions. Once
you
move to the next question, the previous one is
locked.</p>
</li>
<li><strong>End of Quiz</strong>:
<p>The quiz ends when all questions have been
answered.
Your final score will be displayed, and you will
have the option to restart the quiz or exit.</p>
</li>
<li><strong>Multiple Attempts</strong>:
<p>You can attempt the quiz as many times as you
like.
Each new attempt will reset your score and the
questions.</p>
</li>
<li><strong>Answer Selection</strong>:
<p>Choose your answer by clicking on one of the four
options provided. Ensure you select an answer
within
the given time limit.</p>
</li>
<li><strong>Feedback</strong>:
<p>Immediate feedback will be provided after each
question, indicating whether your answer was
correct
or incorrect.</p>
</li>
<li><strong>No Cheating</strong>:
<p>Please do not use external sources or search for
answers online. This quiz is designed to test
your
knowledge fairly.</p>
</li>
<li><strong>Device Compatibility</strong>:
<p>The quiz is optimized for both desktop and mobile
devices. Ensure you have a stable internet
connection for the best experience.</p>
</li>
<li><strong>Privacy</strong>:
<p>Your progress and scores are not saved or shared.
Each quiz session is independent and does not
track
your personal data.</p>
</li>
</ul>
<nav>
<ul class="button-list">
<li><a href="index.html" class="btn">GO BACK</a></li>
</ul>
</nav>
</main>
</div>
</div>
</body>
</html>