-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquiz.html
More file actions
31 lines (31 loc) · 1.4 KB
/
quiz.html
File metadata and controls
31 lines (31 loc) · 1.4 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Test your JavaScript mettle!</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<h1>The JavaScript Gauntlet</h1>
</header>
<main>
<section id="quiz-header">
<h2 id="quiz-question">Test Question</h2>
<div id="quiz-state">
<p id="score">Score: <span id="score-value"></span></p>
<p id="timer">Time Left: <span id="timer-value"></span></p>
</div>
</section>
<section id="choices">
<div class="clickable quiz-choice" data-choice="0">A: <span id="choice-a-text" class="quiz-choice-text"></span></div>
<div class="clickable quiz-choice" data-choice="1">B: <span id="choice-b-text" class="quiz-choice-text"></span></div>
<div class="clickable quiz-choice" data-choice="2">C: <span id="choice-c-text" class="quiz-choice-text"></span></div>
<div class="clickable quiz-choice" data-choice="3">D: <span id="choice-d-text" class="quiz-choice-text"></span></div>
</section>
<div id="previous-choice-feedback"></div>
</main>
<script src="assets/js/questions.js"></script>
<script src="assets/js/quiz.js"></script>
</body>
</html>