-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
35 lines (34 loc) · 1.37 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>
<head>
<title>Tic Tac Toe Project</title>
<link type='text/css' rel='stylesheet' href='css/style.css' />
</head>
<body>
<h1 id="title">TIC-TAC-TOE</h1>
<div id="board">
<div id="buttons">
<div id="row1">
<button id="b1" class="b row1 topLeft"></button>
<button id="b2" class="b row1 topMid"></button>
<button id="b3" class="b row1 topRight"></button>
</div>
<div id="row2">
<button id="b4" class="b row2 midLeft"></button>
<button id="b5" class="b row2 center"></button>
<button id="b6" class="b row2 midRight"></button>
</div>
<div id="row3">
<button id="b7" class="b row3 bottomLeft"></button>
<button id="b8" class="b row3 bottomMid"></button>
<button id="b9" class="b row3 bottomRight"></button>
</div>
</div>
</div>
<div id="playerContainer"
<h1 id="player">X</h1>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src='js/script.js'></script>
</body>
</html>