forked from subhranshuchoudhury/Google-Sheet-Quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
61 lines (58 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz Generator | Quiz</title>
<link rel="stylesheet" type="text/css" href="./css/loader.css" />
<link rel="shortcut icon" href="./images/favicon.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="./css/style.css" />
<link rel="stylesheet" type="text/css" href="./css/hamburger-menu.css">
</head>
<body>
<header>
<a href="index.html">
<h1>Quiz Generator</h1>
</a>
<div class="hamburger-container"">
<div class=" bar1 change"></div>
<div class="bar2 change"></div>
<div class="bar3 change"></div>
</div>
<nav id="top-nav" class="hide">
<a href="index.html">Home</a>
<a href="quizList.html">Quizzes</a>
<a href="about.html">About</a>
</nav>
</header>
<!-- QUIZ PAGE ===================================================================== -->
<aside class="sidebar">
<a href="index.html" class="active">Home</a>
<a href="quizList.html">Quizzes</a>
<a href="submitQuizForm.html">Add New Quiz</a>
<a href="about.html">About</a>
</aside>
<article id="quiz-page-article">
<section id="loader-section">
<div id="loader">Loading...</div>
</section>
<section id="quiz-section" style="display:none;" class="centered middle-screen">
<div id="quiz-wrapper">
<div id="quiz-head">
</div>
<div id="quiz-body">
</div>
</div>
</section>
<section id="quiz-info-section" style="display: none">
<span id="question-number"></span>
<span id="red-text" class="self-centered red-text"></span>
</section>
</article>
<footer>
© Christopher Pucknell 2024
</footer>
</body>
<script src="./js/hamburger.js"></script>
<script type="module" src="./js/generateQuiz.js"></script>
</html>