-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
137 lines (129 loc) · 3.61 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<html lang="en">
<head>
<title> Sudoku Puzzle </title>
<meta charset="utf-8" />
<meta name="description" content="Play sudoku puzzle and refresh your mind. Sudoku puzzle help you to sharp your mathematical skills." />
<meta name="keywords" content="sudoku , puzzle, free, games, math , mathematics, play, start, timer, find, search, i20job, " />
<meta name="viewport" content="width=device-width" />
<meta name="revisit-after" content="7 days" />
<meta name="robots" content="all" />
<meta name="web_author" content="i20job" />
<meta name="googlebot" content="noodp" />
<meta name="googlebot" content="noarchive" />
<meta name="googlebot" content="nosnippet" />
<link rel="shortcut icon" href="../images/favicon.png" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/inclusive.css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-53890245-3', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class='newGameContainer'>
<h2> Start New Game:</h2>
<table id='difficulties'>
<tr>
<td data-val='veryEasy' class='option'>
<div>
very easy
</div>
</td>
<td data-val='easy' class='option' >
<div>
easy
</div>
</td>
<td data-val='medium' class='option' >
<div>
Medium
</div>
</td>
<td data-val='hard' class='option'>
<div>
Hard
</div>
</td>
<td data-val='veryHard' class='option'>
<div>
Very Hard
</div>
</td>
</tr>
<tr>
<td></td>
<td></td>
<td class='startGame'>
<div>
Start
</div>
</td>
<td></td>
<td></td>
</tr>
</table>
</div>
<table class="sudokuContainer">
</table>
<!-- timer view -->
<div class='timeTakenConatiner' style='display:none;'>
<div>Time taken :</div>
<div>
<span id='hours'>0</span> :
<span id='minutes'>0</span> :
<span id='seconds'>0</span>
<button onclick='pauseTimer()' id='controlTimer'>pause</button>
</div>
</div>
<!-- timer view -->
<!-- popup view -->
<link rel="stylesheet" type="text/css" href="css/popUp.css" />
<table class='popUpContainer'>
<tr class='popUpContainerBlock'>
<td></td>
<td></td>
<td></td>
</tr>
<tr class='popUpContainerBlock'>
<td></td>
<td class='popUp'>
<div class='popUpHeader'>ff</div>
<div class='popUpBody'>
<div class='popUpBodyContent'>
kkj
</div>
</div>
<table class='popUpActions'>
<tr class='Actions'>
<td class='popUpActionsOk'>
llkj
</td>
</tr>
</table>
</td>
<td></td>
</tr>
<tr class='popUpContainerBlock'>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<!-- popup view -->
<script type="text/javascript" src="js/sudoku.js"></script>
<script type="text/javascript" src="js/timer.js"></script>
<script>
/*if(screen.width <= 400){
$('.sudokuContainer').attr('style',"width:100%;");
} else if(screen.width <= 800){
$('.sudokuContainer').attr('style',"width:70%; height: 60%;");
} else if(screen.width <= 1000){
$('.sudokuContainer').attr('style',"width: 60%; height: 60%;");
}*/
</script>
</body>
</html>