-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstructions.html
27 lines (27 loc) · 1.45 KB
/
instructions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instruction</title>
<link rel="stylesheet" href="css/quiz.css" type="text/css">
</head>
<body>
<h1 style="text-align: center; font-family: monospace;"> INSTRUCTIONS </h1>
<div class ="instruction">
<ul class = "instruction">
<li> There are a total of 5 questions </li>
<li> Each question is compulsory </li>
<li> Every question has 4 options, out of which only 1 is correct </li>
<li> For every correct answer, 10 points are awarded </li>
<li> There is no negative marking </li>
<li> Once answered, it can not be modified and the next question will be displayed immediately </li>
<li> A correct answer is indicated by a green colour, while an incorrect answer is indicated by a red colour </li>
<li> A progress bar is displayed on the top left, which indicates the number of questions answered </li>
<li> The score obtained is displayed on the top right, which indicates the score obtained till the point </li>
<li> Once all the questions are answered, the final score is displayed </li>
</ul>
<a class ="btn" href="gamestart.html" style="background-color: orangered;"> Click to Play </a>
</div>
</body>
</html>