-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 894 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tic Tac Toe Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="gameBoard" class="board">
<div class="cell" onclick="makeMove(this, 0)"></div>
<div class="cell" onclick="makeMove(this, 1)"></div>
<div class="cell" onclick="makeMove(this, 2)"></div>
<div class="cell" onclick="makeMove(this, 3)"></div>
<div class="cell" onclick="makeMove(this, 4)"></div>
<div class="cell" onclick="makeMove(this, 5)"></div>
<div class="cell" onclick="makeMove(this, 6)"></div>
<div class="cell" onclick="makeMove(this, 7)"></div>
<div class="cell" onclick="makeMove(this, 8)"></div>
</div>
<button id="restartButton" onclick="restartGame()">Restart Game</button>
<script src="script.js"></script>
</body>
</html>