-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.htm
45 lines (44 loc) · 1.06 KB
/
index.htm
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
<html>
<head>
<title>Praxis Math Core Practice</title>
<link href="css/default.css" rel="stylesheet" type="text/css">
<style>
button {
background-color: #0088FF;
border: none;
color: white;
padding: 5px 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin: 2px;
cursor: pointer;
}
textarea {
margin: 2px;
border: 2px solid #0088FF;
}
p {
border: 5px solid lightblue;
margin: 10px;
padding: 10px;
}
</style>
</head>
<body>
<p id="Question">Question goes here</p>
<p id="AnswerArea"><textarea id="Response">Enter answer here</textarea>
<button onclick="checkAnswer()">Submit</button>
</p>
<p>
<button onclick="newQuestion()">New Question</button>
<button onclick="sameQuestion()">Similar Question</button>
<button onclick="showAnswer()">Show Answer</button>
<button onclick="getExplain()">Explanation</button>
</p>
<p id="Answer"></p>
<p id="Khan">For more practice visit: </p>
<script src="script/praxis.js"></script>
</body>
</html>