-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
49 lines (49 loc) · 2.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
42
43
44
45
46
47
48
49
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Sudoku</title>
<meta name="description" content="The classic puzzle game in a modern, mobile-first version.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<h1>Sudoku</h1>
<h2>The classic puzzle game in a modern, mobile-first version.</h2>
<div id="game" class="clearfix">
<div class="board">
<div class="finished-overlay invisible"><span>You Won!</span></div>
</div>
<div class="controls">
<button data-action="restart">Restart</button>
<button data-action="new">New Game</button>
</div>
</div>
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Open+Sans:400,700:latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>window.jQuery || document.write( '<script src="js/vendor/jquery-1.11.1.min.js"><\/script>' )</script>
<script src="js/sudoku.js" async></script>
<script src="js/sudoku-view.js" async></script>
<script src="js/main.js" async></script>
</body>
</html>