-
Notifications
You must be signed in to change notification settings - Fork 0
/
tictactoe.html
32 lines (31 loc) · 950 Bytes
/
tictactoe.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
<html>
<head>
<title>tictactoe</title>
<link href='http://fonts.googleapis.com/css?family=Expletus+Sans' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
</head>
<body>
<h1>welcome to tic-tac-toe</h1>
<h2>you are player <bold>O</bold>, go ahead just try to beat me...</h2>
<table align="center">
<tr id="row1">
<td class="corner" id="1"></td>
<td class="edge" id="2"></td>
<td class="corner" id="3"></td>
</tr>
<tr id="row2" >
<td class="edge" id="4"></td>
<td class="center" id="5"></td>
<td class="edge" id="6"></td>
</tr>
<tr id="row3">
<td class="corner" id="7"></td>
<td class="edge" id="8"></td>
<td class="corner" id="9"></td>
</tr>
</table>
</table>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="javascript.js"></script>
</body>
</html>