-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 722 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<link rel="shortcut icon" type="image/png" href="tictacicon.png" />
<script src="tictac.js"></script>
<title>Tic Tac Toe</title>
<link href="tictac.css" type="text/css" rel="stylesheet" />
<body>
<div id="control">
<button id="AI">Next Move By AI</button>
<button id="reset">Reset</button>
Size: <span id="sizeat"></span>
<input type="range" id="size" value="3" min="3" max="8"/>
How Many to Get in a Row: <span id="winat"></span>
<input type="range" id="winSize" value="3" min="2" />
</div>
<div id="content">
<div id="grid"></div>
<div id="congrats"></div>
</div>
</body>
<html>