-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 871 Bytes
/
Copy pathindex.html
File metadata and controls
38 lines (32 loc) · 871 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Tic Tac Toe</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container clearfix">
<section class="block">
<div class="box" tag="0"></div>
<div class="box" tag="1"></div>
<div class="box" tag="2"></div>
</section>
<section class="block">
<div class="box" tag="3"></div>
<div class="box" tag="4"></div>
<div class="box" tag="5"></div>
</section>
<section class="block">
<div class="box" tag="6"></div>
<div class="box" tag="7"></div>
<div class="box" tag="8"></div>
</section>
</div>
<div class="info-container">
<div id="info-board"></div>
<div id="button-reset-game" class="button">Reset Game!</div>
<div id="button-reset-score" class="button">Reset Score!</div>
</div>
<script src="game.js"></script>
</body>
</html>