forked from sf-wdi-18/tic-tac-toe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (24 loc) · 795 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
<!DOCTYPE HTML>
<html>
<head>
<script src='app.js'></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<h1>Tic Taco</h1>
<div id='board'>
<!-- the ` ` in each div is a non-breakable space.
It prevents the div from collapsing. -->
<div id='topLeft' class='box'> </div>
<div id='topMid' class='box'> </div>
<div id='topRight' class='box'> </div>
<div id='midLeft' class='box'> </div>
<div id='midMid' class='box'> </div>
<div id='midRight' class='box'> </div>
<div id='botLeft' class='box'> </div>
<div id='botMid' class='box'> </div>
<div id='botRight' class='box'> </div>
</div>
<button id="reset">Reset</button>
</body>
</html>