-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest4.html
45 lines (45 loc) · 1.17 KB
/
test4.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
<!DOCTYPE html>
<html>
<!--test4.html-->
<!--Alexander Corley-->
<head>
<meta name="author" content="Alexander Corley"/>
<meta charset="UTF-8"/>
<title>Intelligence Test</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<script type="text/javascript" src="logic.js"></script>
</head>
<body onload="loadData()">
<h1 id="title">Intelligence Test</h1>
<div class="questions">
<p>
7,3 -> 41021
</p>
<p>
8,3 -> 51124
</p>
<p>
5,4 -> 1920
</p>
<p>
7,4 -> 31128
</p>
<p>
17,8 -> 925136
</p>
<p>
<span>13,6 -> ???</span>
</p>
</div>
<div class="answerBox">
<div>
<input class="inputBox" type="text" placeholder="Enter your answer here." id="input" onkeyup="check()"></input>
<p id="inputmessage"><br><p>
</div><br>
<div class="buttons">
<button class="buttonStyle submitButton" onclick="nextPage();" id="Submit" disabled>Submit</button>
<button class="buttonStyle giveUpButton" onclick="nextPage();" id="GiveUp" disabled>Give Up</button>
</div>
</div>
</body>
</html>