-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.04 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
39
40
41
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="content">
<h1>
JavaScript - Tic Tac Toe with bitmask
</h1>
<p class="info-text">
X = KI
<br>
O = Player
</p>
<table id= "game-table">
<tr>
<td id="00"><p ></p></td>
<td id="01"></td>
<td id="02"></td>
</tr>
<tr>
<td id="10"></td>
<td id="11"></td>
<td id="12"></td>
</tr>
<tr>
<td id="20"></td>
<td id="21"></td>
<td id="22"></td>
</tr>
</table>
</div>
<br>
<p id="status-field"></p>
<button onclick="reset_game();">Reset</button>
</body>
<script src="tic-tac-toe.js"></script>
</html>