Skip to content

Commit

Permalink
index-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
meetarora10 committed Jun 9, 2024
1 parent fbee699 commit 5c312b6
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Games/Noughts_And_Crosses/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Noughts And Crosses</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main">
<h1 class="heading">Noughts And Crosses</h1>
<h3>Player 1: O &nbsp; Player 2: X</h3>
<h1 class="game">Let the game begin !!</h1>
<div class="container">
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
<button class="box"></button>
</div>
<p class="message"></p>
<button class="reset">Reset</button>
</div>
<script src="style.js"></script>
</body>
</html>

0 comments on commit 5c312b6

Please sign in to comment.