forked from subhranshuchoudhury/Google-Sheet-Quiz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquizList.html
58 lines (54 loc) · 1.96 KB
/
quizList.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quiz Generator | List</title>
<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" class="active">Quizzes</a>
<a href="about.html">About</a>
</nav>
</header>
<!-- QUIZ LIST 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>
<!-- List -->
<section id="quiz-list-section" class="main-section centered responsive">
<h2>Quiz List</h2>
<p>
Select a quiz from the list below, or select <b>Add New Quiz</b> to add your own.
</p>
<div id="quiz-list-button-group" class="button-group">
<a id="add-new-quiz-btn" class="app-button secondary-button" href="submitQuizForm.html">
Add New Quiz
</a>
</div>
</section>
</article>
<footer>
© Christopher Pucknell 2024
</footer>
</body>
<script src="./js/hamburger.js"></script>
<script type="module" src="./js/createQuizList.js"></script>
</html>