-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions-page.html
More file actions
68 lines (52 loc) · 1.74 KB
/
questions-page.html
File metadata and controls
68 lines (52 loc) · 1.74 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
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
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Coding Quiz</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="reset css" href="./assets/css/reset.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;300&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
</head>
<body>
<!-- Box that all components go in -->
<div class="container">
<div id="home" class="flex-centre flex-column">
<!-- Score and timer -->
<div class="current-score">
<p> Score:</p>
<p id="score"> 0 </p>
<!-- Timer -->
<p> Time:</p>
<p class="timer"></p>
</div>
<!-- Quiz box -->
<div class="quiz-box" class="justify-centre flex-column">
<!-- Questions -->
<h1 id="title"></h1>
<!-- Options -->
<div class="all-options-box">
<div class="choice-box">
<a class="option" id="op1"> Option 1 </a>
</div>
<div class="choice-box">
<a class="option" id="op2"> Option 2 </a>
</div>
<div class="choice-box">
<a class="option" id="op3"> Option 3 </a>
</div>
<div class="choice-box">
<a class="option" id="op4"> Option 4 </a>
</div>
<!-- Correct or incorrect -->
<div id="results-box">
<a> </a>
</div>
</div>
</div>
</div>
</body>
<script src="./assets/js/questions-page.js"></script>
</html>