-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtic-tac-toe-game-for-dinosoft-games.html
102 lines (83 loc) · 2.72 KB
/
tic-tac-toe-game-for-dinosoft-games.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<head>
<link rel="icon" type="image/x-icon" href="DINOSOFT-LOGO.jpg">
</head>
<head>
<body>
<link rel="stylesheet" type="text/css" href="tic-tac-toe.css">
<Title>Tic Tac Toe</Title>
</body>
</head>
<form id="tictactoe">
<input type="radio" name="cell-0" id="cell-0-x" />
<input type="radio" name="cell-0" id="cell-0-o" />
<input type="radio" name="cell-1" id="cell-1-x" />
<input type="radio" name="cell-1" id="cell-1-o" />
<input type="radio" name="cell-2" id="cell-2-x" />
<input type="radio" name="cell-2" id="cell-2-o" />
<input type="radio" name="cell-3" id="cell-3-x" />
<input type="radio" name="cell-3" id="cell-3-o" />
<input type="radio" name="cell-4" id="cell-4-x" />
<input type="radio" name="cell-4" id="cell-4-o" />
<input type="radio" name="cell-5" id="cell-5-x" />
<input type="radio" name="cell-5" id="cell-5-o" />
<input type="radio" name="cell-6" id="cell-6-x" />
<input type="radio" name="cell-6" id="cell-6-o" />
<input type="radio" name="cell-7" id="cell-7-x" />
<input type="radio" name="cell-7" id="cell-7-o" />
<input type="radio" name="cell-8" id="cell-8-x" />
<input type="radio" name="cell-8" id="cell-8-o" />
<div id="board" class="center">
<div class="tile" id="tile-0">
<label for="cell-0-x"></label>
<label for="cell-0-o"></label>
<div></div>
</div>
<div class="tile" id="tile-1">
<label for="cell-1-x"></label>
<label for="cell-1-o"></label>
<div></div>
</div>
<div class="tile" id="tile-2">
<label for="cell-2-x"></label>
<label for="cell-2-o"></label>
<div></div>
</div>
<div class="tile" id="tile-3">
<label for="cell-3-x"></label>
<label for="cell-3-o"></label>
<div></div>
</div>
<div class="tile" id="tile-4">
<label for="cell-4-x"></label>
<label for="cell-4-o"></label>
<div></div>
</div>
<div class="tile" id="tile-5">
<label for="cell-5-x"></label>
<label for="cell-5-o"></label>
<div></div>
</div>
<div class="tile" id="tile-6">
<label for="cell-6-x"></label>
<label for="cell-6-o"></label>
<div></div>
</div>
<div class="tile" id="tile-7">
<label for="cell-7-x"></label>
<label for="cell-7-o"></label>
<div></div>
</div>
<div class="tile" id="tile-8">
<label for="cell-8-x"></label>
<label for="cell-8-o"></label>
<div></div>
</div>
</div>
<div id="end">
<div id="message" class="center">
<div>
<input type="reset" for="tictactoe" value="Play again" />
</div>
</div>
</div>
</form>