-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (24 loc) · 735 Bytes
/
index.html
File metadata and controls
29 lines (24 loc) · 735 Bytes
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
<html>
<head>
<meta charset='UTF-8'>
<script src='html_utils.js'></script>
<script src='list_utils.js'></script>
<script src='type_utils.js'></script>
<script src='random.js'></script>
<script src='ops.js'></script>
<script src='calculator.js'></script>
<script src='math_problem_generator.js'></script>
<script src='question.js'></script>
<script src='command_reader.js'></script>
<title>Operator Game</title>
</head>
<body>
<input type='text' id='command_input'></input>
<br/>
<div id='problem'>Some text that you should not see.</div>
<br/>
<div id='other'></div>
<br/>
<textarea rows="20" cols="80">[Type arbitrary notes here.]</textarea>
</body>
</html>