-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
47 lines (45 loc) · 1.25 KB
/
index2.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
<html>
<head>
<title>Tic Tac Toe</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href='http://fonts.googleapis.com/css?family=Roboto+Slab:300,700,100,400' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="wrapper">
<div id="container">
<div id="titleBox">
<div id="leftSide" class="half">
<div id="board">
<div id="s0" class="gameSpot" value="0" onclick="f0()">
</div>
<div id="s1" class="gameSpot" value="1" onclick="f1()">
</div>
<div id="s2" class="gameSpot" value="2" onclick="f2()">
</div>
<div id="s3" class="gameSpot" value="3" onclick="f3()">
</div>
<div id="s4" class="gameSpot" value="4" onclick="f4()">
</div>
<div id="s5" class="gameSpot" value="5" onclick="f5()">
</div>
<div id="s6" class="gameSpot" value="6" onclick="f6()">
</div>
<div id="s7" class="gameSpot" value="7" onclick="f7()">
</div>
<div id="s8" class="gameSpot" value="8" onclick="f8()">
</div>
<div id="boardbg">
</div>
</div>
</div>
</div>
<div id="rightSide" class="half">
<div id="gameLog">
<h2>Game Log</h2>
</div>
</div>
</div>
</div>
<script src="game2.js" defer></script>
</body>
</html>