-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (30 loc) · 1.16 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Programming MB</title>
<script src="./index.js"></script>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<h1>Programming Merit Badge Tic Tac Toe</h1>
<table>
<tr>
<td><button id="r1c1" type="button" onclick='buttonClicked("r1c1")'></button></td>
<td><button id="r1c2" type="button" onclick='buttonClicked("r1c2")'></button></td>
<td><button id="r1c3" type="button" onclick='buttonClicked("r1c3")'></button></td>
</tr>
<tr>
<td><button id="r2c1" type="button" onclick='buttonClicked("r2c1")'></button></td>
<td><button id="r2c2" type="button" onclick='buttonClicked("r2c2")'></button></td>
<td><button id="r2c3" type="button" onclick='buttonClicked("r2c3")'></button></td>
</tr>
<tr>
<td><button id="r3c1" type="button" onclick='buttonClicked("r3c1")'></button></td>
<td><button id="r3c2" type="button" onclick='buttonClicked("r3c2")'></button></td>
<td><button id="r3c3" type="button" onclick='buttonClicked("r3c3")'></button></td>
</tr>
</table>
</body>
</html>
<!--onfocus='alert("Button clicked")' type="text" size="1"-->