Tic Tac Toe - HTM
Tic Tac Toe - HTM
DOCTYPE html>
<html>
<head>
<title>Tic Tac Toe</title>
<style>
.board {
display: flex;
flex-wrap: wrap;
width: 300px;
height: 300px;
margin: 0 auto;
border: 2px solid black;
}
.square {
width: 98px;
height: 98px;
margin: -1px 0 0 -1px;
border: 1px solid black;
font-size: 72px;
text-align: center;
line-height: 1;
cursor: pointer;
}
.square:hover {
background-color: #eee;
}
</style>
<script>
// Array to hold the game board
let board = ["", "", "", "", "", "", "", "", ""];
if (!board.includes("")) {
alert("It's a tie!");
resetGame();
return;
}
}