This repository was archived by the owner on Apr 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (63 loc) · 1.69 KB
/
index.html
File metadata and controls
72 lines (63 loc) · 1.69 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
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>React Assignment</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link href="http://afeld.github.io/emoji-css/emoji.css" rel="stylesheet">
<style>
body {
text-align: center;
font-family: verdana;
}
.testspace {
width: 600px;
height: 500px;
margin: auto;
position: relative;
border: 3px solid green;
}
p {
font-size:300%;
}
#count{
margin-left: 240px;
margin-top: -48px;
font-size:150%;
}
.top{
position: absolute;
margin: 10px;
}
.iconomation{
position: fixed;
font-size:80%;
}
</style>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="scripts/jquery-ui.min.js"></script>
</head>
<body>
<h1>Simple Math Test</h1>
<div class="iconomation">
</div>
<div class="testspace">
<div class="top">
<button id="addition">Addition</button>
<button id="multiplication" disabled ="disabled">Multiplication</button> <br>
<div id="newlevel"></div>
</div>
<h3> Right answers:</h3>
<h4 id="count"></h4>
<div class="contenttext">
<p id="mathtype"></p>
<p id="math"></p>
<h3> Answer here: </h3>
<input type="text" id="answer" value="">
<button id="button1">Check answer</button>
<button id="tryagain">Try again</button>
<h3 id="feedback"></h3>
</div>
</div>
<script src="scripts/react.js"></script>
</body>
</html>