-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (53 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Quiz</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container-1">
<div class="bar-container">
<button id="view-highscores">View Highscores</button>
<p id="timer">Timer: 30</p>
</div>
<div class="container-2">
<header class="quiz-header">
<h1>Coding Quiz Challenge</h1>
<p>
Try to answer the following code related questions within the time limit. Keep in mind that
inccorect answers will penalize you scoretime by ten seconds!
</p>
<button id="startBtn">Start Quiz</button>
</header>
<main>
<section class="questions-display">
<h2>Question</h2>
<ul id="answers">
<li><button>Answer1</button></li>
<li><button>Answer2</button></li>
<li><button>Answer3</button></li>
<li><button>Answer4</button></li>
</ul>
</section>
<section class="finish-screen">
<h2>Quiz Finished!</h2>
<h2>Your final score is: <span id="scores">00</span></h2>
<div>
<label for="">Enter Initials:</label>
<input type="text">
<button id="submitBtn">Submit</button>
</div>
</section>
<section class="highscores">
<button id="back">Back</button>
<h2>Highscores:</h2>
<ol></ol>
</section>
</main>
</div>
</div>
<script src="script.js"></script>
</body>
</html>