-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>TicTacToe</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Syne+Tactile&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Hubballi&family=Press+Start+2P&family=Syne+Tactile&display=swap">
<link rel="stylesheet" href="ticTacBoard.css" />
</head>
<body>
<div >
<h1 id="title">Tic Tac Toe</h1>
</div>
<div id="board">
<div class="box_cell" id="box0"></div>
<div class="box_cell" id="box1"></div>
<div class="box_cell" id="box2"></div>
<div class="box_cell" id="box3"></div>
<div class="box_cell" id="box4"></div>
<div class="box_cell" id="box5"></div>
<div class="box_cell" id="box6"></div>
<div class="box_cell" id="box7"></div>
<div class="box_cell" id="box8"></div>
</div>
<div id="turn"></div>
<div id="reset">
<button id="btn">Reset</button>
</div>
<script src="script.js"></script>
</body>
</html>