-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (30 loc) · 1.25 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<title>Tic-Tac-Toe</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1"/>
<link href="css/normalize.css" media="screen" rel="stylesheet" type="text/css" />
<link href="css/all.css" media="screen" rel="stylesheet" type="text/css" />
<link rel="icon" href="/img/favicon.png" type="image/png" />
<script src="js/index.js" type="text/javascript"></script>
</head>
<body>
<h1> Tic Tac Toe </h1>
<div id = "result"></div>
<div id="container">
<canvas id = "board" width = "300" height = "300">
</canvas>
<button id= "new-game">New Game</button>
</div>
<script>
var _gaq=[['_setAccount','UA-34699920-1'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>