-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstructions.html
80 lines (79 loc) · 2.84 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Wiz</title>
<link rel="stylesheet" href="style/style.css">
<link rel="stylesheet" href="style/instructions.css">
<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=Audiowide&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
</head>
<body>
<header>
<h1>INSTRUCTIONS</h1>
<nav>
<ol>
<li>
<a href="./index.html">
<i class="fas fa-dungeon"></i>
<span>HOME</span>
</a>
</li>
<li>
<a href="./instructions.html">
<i class="fas fa-gamepad"></i>
<span>INSTRUCTIONS</span>
</a>
</li>
<li>
<a href="./leaderboard.html">
<i class="fas fa-dice-d20"></i>
<span>LEADERBOARD</span>
</a>
</li>
<li>
<a href="./about.html">
<i class="fas fa-laptop-code"></i>
<span>ABOUT</span>
</a>
</li>
</ol>
</nav>
</header>
<main>
<div class="instruction-main">
<p>Instructions:</p>
<ol>
<li>Enter your name and choose a category you want to be quizzed on.</li>
<li>Click on the “Start Game” button to begin the quiz.</li>
<li>You will be presented with a question and four answer options.</li>
<li>Select the answer you believe is correct by clicking on it.</li>
<li>If your answer is correct, you will score a point.</li>
<li>The game will continue until you have answered all the questions in the category.</li>
<li>At the end of the quiz, you will see your final score and other stats.</li>
<li>Have a look at the Leader Board to see how you’re doing.</li>
<li>Try to get the best accuracy score and become the quiz master!</li>
</ol>
<p>Points</p>
<ul>
<li>1 point for an Easy question</li>
<li>2 points for a Medium question</li>
<li>3 points for a Hard question</li>
</ul>
<p>Score vs Accuracy</p>
<ul>
<li>Score is based on how many correct answers you get, and what level of difficulty they are (see above)</li>
<li>Accuracy is the number of times you answered a question correctly vs the total number of questions asked, expressed as a percentage.</li>
</ul>
<br>
<p>Are you ready to test your knowledge? Let’s start the game and see how well you do!</p>
<p>Good luck!</p>
</div>
</main>
<script src="js/app.js"></script>
<script src="js/results.js"></script>
</body>
</html>