-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 907 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
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Tic Tac Toe</title>
<link rel="stylesheet" href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="panel">
<button id="new-game" type="button">New game</button>
</div>
<div id="board">
<div id="1" class="tile"></div>
<div id="2" class="tile"></div>
<div id="3" class="tile"></div>
<div id="4" class="tile"></div>
<div id="5" class="tile"></div>
<div id="6" class="tile"></div>
<div id="7" class="tile"></div>
<div id="8" class="tile"></div>
<div id="9" class="tile"></div>
</div>
<div class="alert-box"></div>
<script src="./index.js"></script>
</body>
</html>