-
Notifications
You must be signed in to change notification settings - Fork 0
/
prequiz.html
46 lines (46 loc) · 1.49 KB
/
prequiz.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="https://cdn-icons-png.freepik.com/512/1700/1700950.png" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Page</title>
<link rel="stylesheet" href="style.css">
<link id="favicon" rel="icon" href="https://cdn-icons-png.freepik.com/512/1700/1700950.png" type="image/x-icon">
</head>
<body>
<header>
<h1>Quiz Page</h1>
<button id="theme-toggle">Toggle Dark Mode</button>
</header>
<nav>
<ul>
<li><a href="aim.html">Objectives</a></l1>
<li><a href="prequiz.html">Prequiz</a></li>
<li><a href="content.html">Home</a></li>
<li><a href="postquiz.html">PostQuiz</a></li>
<li><a href="credits.html">Credits</a></li>
<li><a href="model.html">Simulation</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</nav>
<main>
<section>
<h2>Quiz</h2>
<div id="terminal">
<div id="output"></div>
<div id="input-line">
<span id="prompt">></span>
<input type="text" id="terminal-input" autocomplete="off">
<span id="cursor" class="blink">_</span>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 Group 3. All rights reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/confetti.browser.min.js"></script>
<script src="./script.js"></script>
</body>
</html>