-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtictactoe.html
29 lines (28 loc) · 966 Bytes
/
tictactoe.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
<!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 - kr.amit singh</title>
<link rel="stylesheet" href="tictactoe.css">
</head>
<body>
<div id="gameContainer">
<h1>Tic Tac Toe</h1>
<div id="cellContainer">
<div class="cell" cellIndex="0"></div>
<div class="cell" cellIndex="1"></div>
<div class="cell" cellIndex="2"></div>
<div class="cell" cellIndex="3"></div>
<div class="cell" cellIndex="4"></div>
<div class="cell" cellIndex="5"></div>
<div class="cell" cellIndex="6"></div>
<div class="cell" cellIndex="7"></div>
<div class="cell" cellIndex="8"></div>
</div>
<h2 id="statusText"></h2>
<button id="restartBtn">Restart</button>
</div>
<script src="tictactoe.js"></script>
</body>
</html>