-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 962 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
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<script src="script.js" defer></script>
<title>Tic-Tac-Toe</title>
</head>
<body>
<div class="container">
<h1 id="msg">Tic-Tac-Toe</h1>
<div class="board">
<div data-index="0" class="box"></div>
<div data-index="1" class="box"></div>
<div data-index="2" class="box"></div>
<div data-index="3" class="box"></div>
<div data-index="4" class="box"></div>
<div data-index="5" class="box"></div>
<div data-index="6" class="box"></div>
<div data-index="7" class="box"></div>
<div data-index="8" class="box"></div>
</div>
<button type="button" id="clr-btn">Restart</button>
</div>
</body>
</html>