-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 950 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
24
<!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">
</head>
<body>
<h1>Tic Tac Toe</h1>
<div class="board">
<div onclick="boxClick(this)" id="0" class="cell"></div>
<div onclick="boxClick(this)" id="1" class="cell"></div>
<div onclick="boxClick(this)" id="2" class="cell"></div>
<div onclick="boxClick(this)" id="3" class="cell"></div>
<div onclick="boxClick(this)" id="4" class="cell"></div>
<div onclick="boxClick(this)" id="5" class="cell"></div>
<div onclick="boxClick(this)" id="6" class="cell"></div>
<div onclick="boxClick(this)" id="7" class="cell"></div>
<div onclick="boxClick(this)" id="8" class="cell"></div>
</div>
</body>
<script src="script.js"></script>
</html>