-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (67 loc) · 1.78 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<title>Passive-Aggressive Sudoku Solver</title>
<link type="text/css" rel="stylesheet" href="style.css">
<script type="text/javascript" src="../lib/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="compiled.js"></script>
</head>
<body>
<section id="header">
<h1>
Passive-Aggressive Sudoku Solver
</h1>
</section>
<section id="noscript">
<p>
This site is an exercise in modern web programming techniques, and
as such I am not planning to make a non-JavaScript version of this
page. Sorry!
</p>
</section>
<fieldset id="settings">
<ol>
<li>
<label> Group Size:
<input id="groupSizeInput"
type="number"
name="Group Size"
min="1"
max="35"
value="9">
</label>
</li>
<li>
<label> Box Width:
<input id="boxWidthInput"
type="number"
name="Box Width"
min="1"
max="35"
value="3">
</label>
</li>
<li>
<label> Box Height:
<input id="boxHeightInput"
type="number"
name="Box Height"
min="1"
max="35"
value="3">
</label>
</li>
</ol>
</fieldset>
<section>
<table id="sudokuGrid" onload="render()">
</table>
</section>
<section id="source">
<a href="src">
Source code may be found here.
</a>
</section>
</body>
</html>