-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (55 loc) · 1.29 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>Tic Tac Toe game using jQuery</title>
<script type="text/javascript" src="js/jquery-2.0.3.js"></script>
<script type="text/javascript" src="js/application.js"></script>
<link rel="stylesheet" type="text/css" href="css/application.css" />
</head>
<body>
<div id="start">
<form id="playerInput">
<fieldset>
<legend>Enter Player names</legend>
<ol>
<li>
<input type="text" id="player1" />
</li>
<li>
<input type="text" id="player2" />
</li>
</ol>
</fieldset>
<fieldset>
<button type="submit" id="next">Next</button>
</fieldset>
</form>
</div>
<div id="game" class="game">
<div id="turn">
</div>
<div id="board">
<table>
<tr>
<td id="cell11"></td>
<td id="cell12"></td>
<td id="cell13"></td>
</tr>
<tr>
<td id="cell21"></td>
<td id="cell22"></td>
<td id="cell23"></td>
</tr>
<tr>
<td id="cell31"></td>
<td id="cell32"></td>
<td id="cell33"></td>
</tr>
</table>
</div>
<div id="reset">
<button type="button">Restart Game</button>
</div>
</div>
</body>
</html>