-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (43 loc) · 1.47 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
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title> Rio 2.0 Questionnaire (beta)</title>
<h1> The Rio Scale 2.0: Online Questionnaire (beta)</h1>
</head>
<link rel="stylesheet" type = "text/css" href="quiz.css">
<body>
<h2 id="quizname"> Questions to determine Q </h2>
<h3 id="quizsub"> </h3>
<p id = "ask"> Question should be here </p>
<div id="answersbox"> </div>
<br>
<div id="buttonarray">
<button id="submitbutton" onclick="getQuestionAnswer()"> Submit </button>
<button id="backbutton" onclick="goBack()">Back </button>
<button id="refreshbutton" onclick="window.location.reload()">Restart Quiz</button>
</div>
<p id="confirm"> </p>
<div id = "spaces">
<br>
<br>
</div>
<p id="explainbox"> </p>
<h2 id="resultheader" style="visibility:hidden"> Results </h2>
<div id="Qbox"> </div>
<br>
<div id="Abox"> </div>
<div id="Bbox"></div>
<div id="Cbox"></div>
<br>
<div id="Jbox"> </div>
<div id="deltabox"> </div>
<br>
<div id="Rbox"> </div>
<h2> Answer Log </h2>
<div id="logbox"></div>
<button id = "printbutton" onclick=window.print() style="visibility:hidden">Print Results</button>
<button id= "refreshlower" onclick="window.location.reload()" style="visibility:hidden">Restart Quiz</button>
<!--Javascript stuff -->
<script src='quiz.js'> </script>
</body>