-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (49 loc) · 1.24 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
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title>Tic Tac Toe Game </title>
</head>
<body>
<table id="scoreboard" align="center">
<tr>
<td> Player 1 </td>
<td width="30"> </td>
<td> Player 2 </td>
</tr>
<tr>
<td class="score" id="player1">
0
</td>
<td> </td>
<td class="score" id="player2">
0
</td>
</tr>
</table>
<div id="placeholder"></div>
<button onclick="restart()">
Reset
</button>
<select onchange="restart(this.value)">
<option value="2">
2 X 2
</option>
<option value="3" selected="">
3 X 3
</option>
<option value="4">
4 X 4
</option>
<option value="5">
5 X 5
</option>
<option value="6">
6 X 6
</option>
</select>
<script src="script.js"></script>
</body>
</html>