-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 885 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
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
<title>Tic Tac Toe</title>
</head>
<body>
<div class="Columns">
<h1>Tic Tac Toe</h1>
<div class="playerDisplay">
<p>Player X</p>
</div>
<div class="playerDisplay">
<p>Player O</p>
</div>
<p> </p>
<div id="displayWinner">New Game!</div>
<p></p>
<div id="Reset">
<p>Reset Game</p>
</div>
<div id="music">
<p>Turn off Sound</p>
</div>
</div>
<div class="Columns">
<p>
<div id="Column1"></div><div id="Column2"></div><div id="Column3"></div>
</br>
<div id="Column4"></div><div id="Column5"></div><div id="Column6"></div>
</br>
<div id="Column7"></div><div id="Column8"></div><div id="Column9"></div>
</p>
</div>
</body>
<script src="theGame.js"></script>
</html>