-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (43 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="assets\css\style.css">
</head>
<body>
<header>
<h4 id="highScore">View high scores</h4>
<h4 id="timer">Time: 60</h4>
</header>
<h1 class="main-header text-center ">Coding Quiz Challenge</h1>
<section class = "quiz-wrap text-center " >
<h4 id="startText" >Try to answer the following code-related quetions within the time limit. Keep in mind that incorrect answers will penalize your score/time by ten seconds</h4>
<button id="start" >Start</button>
<h3 id = 'questionDisplay' ></h3>
<div class = "quiz-display ">
<button id="choice1" class="hide"></button>
<button id="choice2" class="hide"></button>
<button id="choice3" class="hide"></button>
<button id="choice4" class="hide"></button>
</div>
<div class = "result-Display hide">
<h2></h2>
<h3></h3>
<textarea></textarea>
<button></button>
</div>
<div class="high-score-display hide" >
<h2></h2>
<textarea readonly></textarea>
<button id="goBackBtn"></button>
<button id="clearHighScoreBtn"></button>
</div>
<h4 id="result" class="hide"></h4>
</section>
<script src="assets/js/questions.js"></script>
<script src="assets\js\script.js"></script>
</body>
</html>