-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (32 loc) · 885 Bytes
/
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
<!doctype html>
<html>
<head>
<title>Calculator</title>
<link rel="stylesheet" href="css/reset.css"></style>
<link rel="stylesheet" href="css/main.css"></style>
<link rel="stylesheet" href="css/version.css"></style>
<script src="js/permutations.js"></script>
<script src="js/algebra.js"></script>
<script src="js/grammar.js"></script>
<script src="js/evaluator.js"></script>
<script type="text/javascript"
src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=MML_HTMLorMML">
</script>
</head>
<body>
<div id="_version_"></div>
<div class="calculator">
<ul id="results"></ul>
<form action="#" id="command-line">
<input name="user-entry"
autofocus
size="72"
type="text"
placeholder="Try 1+1">
</input>
<button type="submit">DO IT</button>
</form>
</div>
<script src="js/ui.js"></script>
</body>
</html>