summaryrefslogtreecommitdiff
path: root/subject/quiz/index.html
blob: e0d365ba2b5d9348d6a66627af2b492f8c1e0390 (plain)
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
<!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="/style.css">
	<title>Al Azhar 9th Grade Lesson Notes</title>
	<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
	<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
	<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
	<link rel="manifest" href="/site.webmanifest">
	<script src="https://kit.fontawesome.com/d279a1f519.js" crossorigin="anonymous"></script>
	<script>
		MathJax = {
			tex: {
				inlineMath: [['\\(', '\\)']]
			}
		};
	</script>
	<script type="text/javascript" id="MathJax-script" async
		src="/libraries/mathjax/es5/tex-chtml.js">
	</script>
	<script src="/libraries/markdown-it/markdown-it.min.js"></script>
</head>

<body>
	<div class="fixed-top-btn-container" id="topbtn">
		<a class="fixed-top-btn menu-btn" onclick="toggleNav()" href="javascript:void(0)"><i class="fa-solid fa-bars"></i></a>
		<a href="../" class="fixed-top-btn back-btn" id="top-back-btn"><i class="fa-solid fa-chevron-left"></i></a>
	</div>
	<div id="console"></div>
	<div id="sidebar">
		<div>
			<a href="/">
				<img src="/assets/images/master.svg" alt="" class="sidebar-logo">
			</a>
		</div>

		<div>
			<a href="/about/author.html" class="sidebar-link link" id="link-author">About the Author</a>
			<a href="/about/school.html" class="sidebar-link link" id="link-school">About School</a>
			<a href="/lessons" class="sidebar-link link" id="link-lessons">Lessons</a>


			<hr class="divider">
			<div id="toc">
				<h3 id="toc-title">Table of Contents</h3>
			</div>
		</div>
	</div>

	<div class="banner-container" id="banner">
		<div class="banner-bg" id="img-supplies"></div>
		<div class="gradient-bg"></div>
		<div class="banner-text-container">
			<h1 class="banner-text" id="title-banner">Lesson Title</h1>
			<h3 class="banner-text" id="subtitle">Chapter 1</h3>
		</div>
	</div>

	<div id="main" style="margin-top: 20px;">
		<section id="container" style="position: relative;">
			<div class="flex row" style="gap: 5px;">
				<div class="flex row" style="width: 100%; gap: 10px;">
					<i class="quiz-bullet b-correct fa-solid fa-circle"></i>
					<i class="quiz-bullet b-incorrect fa-solid fa-circle"></i>
					<i class="quiz-bullet b-now fa-regular fa-circle"></i>
					<i class="quiz-bullet b-none fa-solid fa-circle"></i>
				</div>
				<div class="chip" style="margin-right: 5px;">Question 0/1</div>
				<a class="button left-rounded" href="#"><i class="fa-solid fa-forward"></i> Skip</a>
				<a class="button primary right-rounded" href="#"><i class="fa-solid fa-check"></i> Submit</a>
			</div>
			<div id="correct" class="container question-window">
				<div class="flex">
					<i class="fa-solid fa-check check"></i>
					<div class="flex column" style="align-items: baseline; margin-left: 20px;">
						<b style="font-size: 1.1rem; color: black;">Correct!</b>
						<span>Keep on going!</span>
					</div>
				</div>
			</div>
			<div id="incorrect" class="container question-window">
				<div class="flex">
					<i class="fa-solid fa-x x"></i>
					<div class="flex column" style="align-items: baseline; margin-left: 20px;">
						<b style="font-size: 1.1rem; color: black;">Inorrect.</b>
						<span>Don't worry.</span>
					</div>
				</div>
			</div>
			<p id="question">Are you an idiot?</p>
			<div class="button-group-container">
				<button class="button-grouped button-grouped-top" href="#">
					<span class="button-char-icon">A.</span>
					<span>No! But, Altaf. He is an idiot.</span>
				</button>
				<button class="button-grouped selected" href="#">
					<span class="button-char-icon">B.</span>
					<span></span>
				</button>
				<button class="button-grouped" href="#">
					<span class="button-char-icon">C.</span>
					<span></span>
				</button>
				<button class="button-grouped button-grouped-bottom" href="#">
					<span class="button-char-icon">D.</span>
					<span></span>
				</button>
			</div>
		</section>
	</div>

	<script src="/scripts/global.js"></script>
	<script src="/scripts/globalElements.js"></script>
	<script src="/scripts/localStorage.js"></script>
	<script src="/scripts/toc.js"></script>
	<script src="/scripts/lesson.js"></script>
	<script src="/scripts/sidebar.js"></script>
	<script src="/scripts/onload/quiz.js"></script>
</body>

</html>