-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmutli.html
50 lines (45 loc) · 1.16 KB
/
mutli.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tic Tac Toe</title>
<link rel = "stylesheet" href = "style.css">
</head>
<body>
<center>
<div class = "player-selection">
<div class="optHeader">SELECT YOUR WEAPON</div>
<select id = "playerOpt">
<option value = "X">X</option>
<option value = "Y">Y</option>
</select>
<br><br>
<button id = "playerOptSelect">Okay</button>
</div>
<div class="heading">
Tic Tac Toe
</div>
<table class="game-container">
<tr>
<td id="0"></td>
<td id="1"></td>
<td id="2"></td>
</tr>
<tr>
<td id="3"></td>
<td id="4"></td>
<td id="5"></td>
</tr>
<tr>
<td id="6"></td>
<td id="7"></td>
<td id="8"></td>
</tr>
</table>
<br>
<button onclick="clearBoard()">RESET </button>
</center>
<script src="multi.js"></script>
</body>
</html>