-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 952 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
29
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tic-Tac-Toe</title>
<link rel="stylesheet" href="styles.css" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<div class="container">
<h1>Tic-Tac-Toe</h1>
<div class="square">
<div class="grid-slot" index="1"></div>
<div class="grid-slot" index="2"></div>
<div class="grid-slot" index="3"></div>
<div class="grid-slot" index="4"></div>
<div class="grid-slot" index="5"></div>
<div class="grid-slot" index="6"></div>
<div class="grid-slot" index="7"></div>
<div class="grid-slot" index="8"></div>
<div class="grid-slot" index="9"></div>
</div>
<div class="statusText"></div>
<button class="restartBtn">RESTART</button>
</div>
<script src="app.js"></script>
</body>
</html>