-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
178 lines (175 loc) · 7.24 KB
/
quiz.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="../images/dsa-logo.png" type="image/x-icon" />
<link rel="stylesheet" href="../style.css" />
<link rel="stylesheet" href="quiz.css">
<title>Learn DSA Using Python || Code Explorer</title>
</head>
<body class="body">
<marquee class="marquee">Learn DSA Using Python || Lesson 03 - Data Structures || Code
Explorer</marquee>
<div class="main-body">
<div class="left">
<div class="logo">
<img src="../images/code.png" alt="" height="100px" width="100px" class="logo-img" />
<div class="logo-div marquee">
<span class="code">Code</span><span class="explorer">Explorer</span>
</div>
<span class="dropdown"></span>
</div>
<hr class="one" />
<div class="hide-on-small-screen">
<span class="contents">Contents</span>
<hr class="two nav-two" />
<ul type="none" class="nav-hidden">
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="../index.html">
<span class="lesson">Lesson 1 / Intro</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="index.html">
<span class="lesson">Lesson 2 / Python Revision</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="../lesson-03/index.html">
<span class="lesson">Lesson 3 / Data Structures</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="../lesson-04/index.html">
<span class="lesson">Lesson 4 / Algorithms</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 1 / Intro</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 2 / Revision</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 3 / Testing</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 4 / Output</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 1 / Intro</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 2 / Revision</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 3 / Testing</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 4 / Output</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 1 / Intro</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 2 / Revision</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 3 / Testing</span>
</a>
</li>
<hr class="two" />
<li>
<img src="../images/arrow.png" alt="" class="arrow-img" />
<a href="https://youtube.com">
<span class="lesson">Lesson 4 / Output</span>
</a>
</li>
<hr class="two" />
</ul>
</div>
</div>
<div class="right">
<h1 class="h1">
Welcome To DSA Complete Course Using Python By Code Explorer
</h1>
<hr class="one" />
<h1 class="h1">Here We Will Take A Small Quiz About Basic Python Revision</h1>
<hr class="two"/>
<div id="quiz-container">
<h1 class="quiz-question story"></h1>
<ul class="quiz-options h1" id="quiz-options">
<!-- Options will be filled dynamically using JavaScript -->
</ul>
<div class="quiz-buttons">
<button id="previous-btn" onclick="previousQuestion()">Previous</button>
<button id="save-next-btn" onclick="saveAndNextQuestion()">Save & Next</button>
</div>
</div>
<div id="quiz-result" style="display: none;">
<h2>Your Quiz Result</h2>
<p id="result-text"></p>
</div>
<marquee style="bottom: 10px; position: static;">Thanks For Taking Part In The Quiz</marquee>
</div>
</div>
<footer class="footer">
Copyright © 2023 || Developed By ::
<a href="https://explorecode.newsgoogle.org"><span class="footer-code">Code Explorer</span></a>
</footer>
<script src="quiz.js"></script>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/prismjs@1.24.1/prism.min.js"></script>
</body>
</html>