-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 947 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
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="./styles.css">
<body>
<h1 id="game-name">Tic-Tac-Toe</h1>
<h2 id="instructions">Instructions</h2>
<p>Click on the squares to make your mark. Play with a friend! Three in a row, column, or diagonal wins!</p>
<table>
<tr class="top">
<td class="left" ></td>
<td class="center"></td>
<td class="right" ></td>
</tr>
<tr class="middle">
<td class="left" ></td>
<td class="center"></td>
<td class="right" ></td>
</tr>
<tr class="bottom">
<td class="left" ></td>
<td class="center"></td>
<td class="right" ></td>
</tr>
</table>
</body>
<script src="./index.js"></script>
<script src="./test.js"></script>
</html>