-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.15 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
<html>
<body>
<title>Tick Tac Toe</title>
<link rel="stylesheet" href="style.css">
</body>
<head>
<h1 id="heading">Tick Tac Toe</br>   - by yours truly</h1>
<table>
<tr>
<th id="one" onclick="set(one)" class="imgset"></th>
<th id="two" onclick="set(two)" class="imgset"></th>
<th id="three" onclick="set(three)" class="imgset"></th>
</tr>
<tr>
<th id="four" onclick="set(four)" class="imgset"></th>
<th id="five" onclick="set(five)" class="imgset"></th>
<th id="six" onclick="set(six)" class="imgset"></th>
</tr>
<tr>
<th id="seven" onclick="set(seven)" class="imgset"></th>
<th id="eight" onclick="set(eight)" class="imgset"></th>
<th id="nine" onclick="set(nine)" class="imgset"></th>
</tr>
</table>
<section>
<h1 id="winner">X</h1>
<p id="ins"></p>
</section>
<script src="index.js"></script>
</head>
</html>