-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrules.html
56 lines (54 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href=https://breezeui.netlify.app/styles/breezeUI.css>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="main.css">
<title>Quiz App | Rules</title>
</head>
<body>
<header class="flex-space-btwn flex-center header-container">
<div class="flex-center">
<h3 class="text-highlight">HopScotch</h3>
</div>
<button class="menu-btn"><i class="fa fa-bars"></i></button>
<nav class="nav-pill-container flex-layout flex-center flex-space-btwn">
<a class="mg-rl-1 txt-md a-link nav-link" href="index.html">Home</a>
<a class="mg-rl-1 txt-md a-link nav-link" href="rules.html">Rules</a>
<a class="mg-rl-1 txt-md a-link nav-link" href="categories.html">Categories</a>
<button id="toggle-btn" class="mg-rl-1 btn-img" value="dark-mode"><img src="assets/images/dark_mode.svg"></a>
</nav>
</header>
<div class="flex-column flex-center">
<div class="flex-space-btwn flex-center rules-container">
<h3>Rules</h3>
<div class="rules flex-col-space-btwn">
<span>
👉 Each question is of multiple-choice format, with only one
right answer per question.
</span>
<span>
👉 Read the question carefully, and click on the option to select
it as the answer for the question.
</span>
<span>
👉 After responding to the last question, click on "Submit" to end
the quiz and view the results.
</span>
<span>
👉 For every correct answer you get +5 points and no negative points
for wrong answers.
</span>
<span>
👉 Un-answered questions do not lead to point deduction.
</span>
</div>
<a class="link-btn txt-center mg-1" href="questions.html">Start Quiz !</a>
</div>
</div>
<script src="app.js"></script>
</body>
</html>