-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTicTacToe.htm
More file actions
44 lines (44 loc) · 1.76 KB
/
TicTacToe.htm
File metadata and controls
44 lines (44 loc) · 1.76 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<script src="TicTacToe.js" type="text/javascript"></script>
<form name="userinfo" method="get" action="TicTacToe.htm">
<table align="center" border="True"
style="border-style: inset; border-width: thick; width: auto; height: auto;">
<tr>
<td>
<input id="Button0" type="button" value="click me" onclick="Play(0)" /></td>
<td>
<input id="Button1" type="button" value="click me" onclick="Play(1)" /></td>
<td>
<input id="Button2" type="button" value="click me" onclick="Play(2)" /></td>
</tr>
<tr>
<td>
<input id="Button3" type="button" value="click me" onclick="Play(3)"/></td>
<td>
<input id="Button4" type="button" value="click me" onclick="Play(4)"/></td>
<td>
<input id="Button5" type="button" value="click me" onclick="Play(5)"/></td>
</tr>
<tr>
<td>
<input id="Button6" type="button" value="click me" onclick="Play(6)"/></td>
<td>
<input id="Button7" type="button" value="click me" onclick="Play(7)"/></td>
<td>
<input id="Button8" type="button" value="click me" onclick="Play(8)"/></td>
</tr>
<tr>
<td></td>
<td>
<input id="Button9" type="button" value="Reset" onclick="Reset()" disabled="disabled" /></td>
<td></td>
</tr>
</table>
</form>
</body>
</html>