-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.3 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">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="./midfi.css">
<title>Tic Tac Foe</title>
</head>
<body>
<section>
<game class="text">
TIC TAC FOE
</game>
<game class="board">
<button id="a1" class="square new" type="button" disabled></button>
<button id="b1" class="square new" type="button" disabled></button>
<button id="c1" class="square new" type="button" disabled></button>
<button id="a2" class="square new" type="button" disabled></button>
<button id="b2" class="square new" type="button" disabled></button>
<button id="c2" class="square new" type="button" disabled></button>
<button id="a3" class="square new" type="button" disabled></button>
<button id="b3" class="square new" type="button" disabled></button>
<button id="c3" class="square new" type="button" disabled></button>
</game>
<game class="button-choices">
<button id="buttonTeamX" class="teamSelect choice hide" type="button" disabled>X</button>
<button id="buttonTeamO" class="teamSelect choice hide" type="button" disabled>O</button>
<button id="buttonReset" class="reloadSelect choice hide" type="button" disabled>New Game</button>
</game>
</section>
<script src="./midfi.js"></script>
</body>
</html>