-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (64 loc) · 2.88 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
<!DOCTYPE html>
<html>
<head>
<title>SudokuNomi - Sudoku Only - Play sudoku for free online!</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="js/json2.js"></script>
<script type="text/javascript" src="js/jstorage.min.js"></script>
<script type="text/javascript" src="js/sudoku.js"></script>
<script type="text/javascript" src="js/game.js"></script>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="shortcut icon" href="favicon.ico">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-577971-12']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="header">
<h1>SudokuNomi</h1>
</div>
<div id="options-wrap">
<div>
<label for="opt-difficulty">
Difficulty:
<select id="opt-difficulty">
<option value="easy">Easy</option>
<option value="medium" selected>Medium</option>
<option value="hard">Hard</option>
<option value="expert">インポッシブル</option>
</select>
</label>
<label for="opt-showhints">
<input id="opt-showhints" type="checkbox"/>
Show Hints
</label>
</div>
</div>
<div id="game">
<noscript>SudokuNomi requires Javascript to function.</noscript>
</div>
<div id="timer">
0:00:00
</div>
<div id="actions-wrap">
<button id="opt-newpuzzle" class="button">New Puzzle</button>
<button id="opt-printpuzzle" class="button">Print</button>
</div>
<div id="footer">
<p id="sc-info">Keyboard shortcuts: arrow keys, 0-9, enter</p>
<h3>How to play Sudoku (数独, すうどく)</h3>
<p>The object of the game is to complete the 9x9 grid so that each row, column, and 3x3 sub grid contain the digits 1-9 once only.</p>
<p><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png" /></a><br /><span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">SudokuNomi</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://raymondmayjr.com" property="cc:attributionName" rel="cc:attributionURL">Raymond May Jr.</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.</p>
</div>
</body>
</html>