-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (33 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>tic-tac-toe</title>
<link rel="stylesheet" href="style.css">
<!-- asynnc defer means script load asynchronously, it runs afetr page is loaded -->
<script async defer src="script.js"></script>
</head>
<body>
<h1 align="center">Tic Tac Toe Game</h1>
<h2 align="center">Turn: Player <span id="player">X</span></h2>
<div style="text-align: center;"><button id="restart" onclick="restartGame()">RESTART</button></div>
<table id="game" align="center">
<tr>
<td onclick="boxClicked(1, 1)"></td>
<td onclick="boxClicked(1, 2)"></td>
<td onclick="boxClicked(1, 3)"></td>
</tr>
<tr>
<td onclick="boxClicked(2, 1)"></td>
<td onclick="boxClicked(2, 2)"></td>
<td onclick="boxClicked(2, 3)"></td>
</tr>
<tr>
<td onclick="boxClicked(3, 1)"></td>
<td onclick="boxClicked(3, 2)"></td>
<td onclick="boxClicked(3, 3)"></td>
</tr>
</table>
</body>
</html>