-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.21 KB
/
index.html
File metadata and controls
34 lines (31 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>Cntdn.js</title>
</head>
<body>
<h1>Cntdn.js</h1>
<form onsubmit="ui_solve_letters(); return false">
<input type="text" id="letters" placeholder="Letters">
<button type="submit">Solve</button>
</form>
<hr>
<textarea rows="20" cols="50" id="letters-answer"></textarea>
<hr>
<form onsubmit="ui_solve_numbers(); return false">
<input type="text" id="num1" placeholder="Number">
<input type="text" id="num2" placeholder="Number">
<input type="text" id="num3" placeholder="Number">
<input type="text" id="num4" placeholder="Number">
<input type="text" id="num5" placeholder="Number">
<input type="text" id="num6" placeholder="Number">
<input type="text" id="target" placeholder="Target">
<button type="submit">Solve</button>
<button onclick="ui_solve_trickshot(); return false">Trickshot</button>
</form>
<hr>
<textarea rows="20" cols="50" id="numbers-answer"></textarea>
<script src="cntdn.js"></script>
<script src="ui.js"></script>
</body>
</html>