Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions tic_tac_toe/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<!DOCTYPE html>

<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">


<link rel="stylesheet" type="text/css" href="style.css">


<script src="script.js"></script>
</head>

<body>
<div id="main">
<h1>TIC TAC TOE</h1>

<p id="ins">Game starts by just Tap on
box<br><br>First Player starts as
<b>Player X</b><br>And<br>Second
Player as <b>Player 0</b>
</p>




<br><br>
<input type="text" id="b1" onclick="myfunc_3(); myfunc();" readonly>

<input type="text" id="b2" onclick="myfunc_4(); myfunc();" readonly>

<input type="text" id="b3" onclick="myfunc_5(); myfunc();" readonly>
<br><br>

<input type="text" id="b4" onclick="myfunc_6(); myfunc();" readonly>

<input type="text" id="b5" onclick="myfunc_7(); myfunc();" readonly>

<input type="text" id="b6" onclick="myfunc_8(); myfunc();" readonly>
<br><br>

<input type="text" id="b7" onclick="myfunc_9(); myfunc();" readonly>

<input type="text" id="b8" onclick="myfunc_10();myfunc();" readonly>

<input type="text" id="b9" onclick="myfunc_11();myfunc();" readonly>
<br><br><br>
<button id="but" onclick="myfunc_2()">
RESET
</button>

<br><br>
<p id="print"></p>




</div>
</body>

</html>
Loading