-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (34 loc) · 1.48 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
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet"
type="text/css" href="index.css">
<script src="index.js"></script>
<title>TIC TAC TOE</title>
</head>
<body>
<div id="main">
<h1 id="header">TIC TAC TOE</h1>
<br><br><br><br>
<p id="rules">
First Player Symbol: X
Second Player Symbol: O <br><br>
</p>
<br>
<input type="text" id="b1" onclick="Button00(); gameStatus();" readonly>
<input type="text" id="b2" onclick="Button01(); gameStatus();" readonly>
<input type="text" id="b3" onclick="Button02(); gameStatus();" readonly>
<br><br>
<input type="text" id="b4" onclick="Button10(); gameStatus();" readonly>
<input type="text" id="b5" onclick="Button11(); gameStatus();" readonly>
<input type="text" id="b6" onclick="Button12(); gameStatus();" readonly>
<br><br>
<input type="text" id="b7" onclick="Button20(); gameStatus();" readonly>
<input type="text" id="b8" onclick="Button21(); gameStatus();" readonly>
<input type="text" id="b9" onclick="Button22(); gameStatus();" readonly>
<br><br><br>
<button id="but" onclick="resetGame()">RESET</button>
<br><br>
<p id="print"></p>
</div>
</body>
</html>