-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (61 loc) · 2.42 KB
/
index.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
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en-US">
<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>Code Quiz</title>
<meta name="author" content="Nordleen De Frias">
<meta name="description" content="A typical coding assessment with a combination of multiple-choice questions and interactive coding challenges" >
<meta name="keywords" content="full-stack, code, code test, code quiz, code assessment, web dev, developer quiz">
<link rel="stylesheet" type="text/css" href="./assets/css/style.css">
</head>
<body>
<!-- TOP SECTION -->
<div id="tops" class="tops">
<div id="leaderboard" class="leaderboard">
<a id="highScores" class="highScores" href="#highScoresSection">View High Scores</a>
</div>
<div id="timeAtZero" class="timeAtZero">Time: 0</div>
</div>
<!-- INTRO SECTION -->
<div id="container-intro" class="container-intro">
<h1>Coding Quiz Challenge</h1>
<p>Try to answer the following code-related questions within the time limit.</p>
<p>Keep in mind that incorrect answers will penalize your score/time by ten seconds!.</p>
<button id="startButton" class="startButton">Start Quiz</button>
</div>
<!-- QUESTIONAIRE SECTION -->
<div id="container-questions" class="container-questions show">
<div id="questionTitle"></div>
<div id="choices"></div>
<div id="answer" class="answer"></div>
<p id="rightOrWrong" class="rightOrWrong"><span></span></p>
<div id="timerCountdown" class="timerCountdown"></div>
</div>
<!-- RESULTS SECTION -->
<div id="results" class="results hide">
<h2>All done!</h2>
<p>Your final score is <span id="finalScore" class="finalScore"></span></p>
<p>Enter initials</p>
<input type="text" id="initials" class="initials" name="initials" />
<button id="submitBtn" class="submitBtn">Submit</button>
</div>
<!-- HIGH SCORES SECTION -->
<div id="highScoresSection" class="highScoresSection hide">
<div>
<h2>High Scores</h2>
</div>
<div>
<ol>
<li id="highScoreList" class="highScoreList"></li>
</ol>
</div>
<div id="btnsSection" class="btnsSection">
<button id="goBackBtn" class="goBackBtn">Go Back</button>
<button id="clearListBtn" class="clearListBtn">Clear High Scores</button>
</div>
</div>
<script src="./assets/js/script.js"></script>
</body>
</html>