-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion.html
50 lines (35 loc) · 1.03 KB
/
question.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./src/styles/styles.css">
<script src="https://kit.fontawesome.com/cf46fcdf5c.js" crossorigin="anonymous"></script>
<title></title>
</head>
<body>
<div id="app">
<a class="homeBtn" href="index.html">
<i class="fas fa-home"></i>
</a>
<div class="header">
<div class="progress">
<p id="progressText"></p>
<div id="progressBar">
<div id="progressCurrent"></div>
</div>
</div>
<h1 id="question"></h1>
<p id="checkboxText" class="hide">* There are multiple answers possible</p>
</div>
<div class="timer">
<div id="timer_bar"></div>
</div>
<div class="choice_container"></div>
<div class="button btn-next">
<button id="next-button">Next</button>
</div>
</div>
<script type="module" src="./src/app.js"></script>
</body>
</html>