-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (29 loc) · 1.04 KB
/
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
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://kit.fontawesome.com/f5ed9082ee.js" crossorigin="anonymous"></script>
<link rel="icon" href="./images/icon.png" />
<link rel="stylesheet" href="./style.css" />
<script src="./script.js" defer></script>
<title>Tic-Tac-Toe</title>
</head>
<body class="flex">
<div class="title">
<h1>Tic-Tac-Toe</h1>
<h2 id="game-status"></h2>
</div>
<div id="gameboard">
<div class="cell" data-index="0"></div>
<div class="cell" data-index="1"></div>
<div class="cell" data-index="2"></div>
<div class="cell" data-index="3"></div>
<div class="cell" data-index="4"></div>
<div class="cell" data-index="5"></div>
<div class="cell" data-index="6"></div>
<div class="cell" data-index="7"></div>
<div class="cell" data-index="8"></div>
</div>
<button id="reset">restart</button>
<a href="https://github.com/yuliana-r/tic-tac-toe" target="_blank"><i class="fab fa-github"></i></a>
</body>
</html>