-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchattymath.html
37 lines (33 loc) · 1.25 KB
/
chattymath.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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Chatty Math</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="spectre.min.css">
<link rel="stylesheet" href="chattymath.css">
</head>
<body>
<div id="main">
<h1>Chatty Math</h1>
<h3>Enter simple math problems, and Chatty Math will solve them for you.</h3>
<form>
<label class="form-label" for="question">Your math problem</label>
<input class="form-input" id="question" type="text" placeholder="a simple math problem" />
<button class="btn btn-primary input-group-btn" id="answerRequest">Solve it!</button>
</form>
<div id="answers"></div>
</div>
<script id="answerTemplate" type="text/html">
<div class="answer">
<span class="questionpart"><%= question %></span>
<span class="answerpart"><%= answer %></span>
</div>
</script>
<script src="jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="jquery.min.js"><\/script>')</script>
<script src="chattybundle.js"></script>
</body>
</html>