-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.29 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang='en'>
<head>
<meta charset='UTF-8'>
<title>Sudoku Step-by-Step Solver</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
</head>
<body onload='drawBackground(2); reset();'>
<canvas id='bg-2' width='1280' height='800'></canvas>
<div id=container>
<main>
<h1>Sudoku Spelling</h1>
<p>Type your message in the box below</br>and turn it into a solvable sudoku puzzle!</p>
<input value='Alastair Stanley'>
<button id='generate'>Generate</button>
<button id='simplify'>Simplify</button>
<div id='grid-container'></div>
<nav>
<a id='home' href='/index.html'>< Home</a>
<p>|</p>
<a id='how-to' href='how-to.html'>How it works ></a>
</nav>
</main>
</div>
</body>
<link rel='stylesheet' href='/core.css'>
<link rel='stylesheet' href='style.css'>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
<script src='scripts/parse.js'></script>
<script src='scripts/grid.js'></script>
<script src='scripts/generate.js'></script>
<script src='scripts/solve.js'></script>
<script src='scripts/find.js'></script>
<script src='scripts/sort.js'></script>
<script src='/backgrounds.js'></script>
</html>