-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
57 lines (53 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>UofA Bootcamp Coding Quiz</title>
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16"href="assets/images/favicon-16x16.png">
<link rel="manifest" href="assets/images/site.webmanifest">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/colors.css">
<link rel="stylesheet" href="assets/css/style.css">
</link>
</head>
<body>
<header>
<h1>UofA Bootcamp Coding Quiz</h1>
</header>
<div id="page-container">
<div id="content-wrap">
<section id="quiz">
<article>
<div id="quiz-header">
<h2 id="question-number">Q</h2>
<time id="timer">--:--</time>
</div>
<div>
<p readonly class="text-area" id="text-question" placeholder="Your question here"
aria-label="Question"></p>
</div>
<ol>
<button id="btn-1" data-option=0 class="btn">1.</button>
<button id="btn-2" data-option=1 class="btn">2.</button>
<button id="btn-3" data-option=2 class="btn">3.</button>
<button id="btn-4" data-option=3 class="btn">4.</button>
</ol>
<aside id="results"></aside>
</article>
</section>
</div>
<footer>
<div class="footer-container">
<h3>
<a href="mailto:[email protected]">Made by Daniel Flores © 2022</a>
</h3>
</div>
</footer>
</div>
<script src="./assets/js/quiz.js"></script>
</body>
</html>