diff --git a/Games/Tic-tac-toe/README.md b/Games/Tic-tac-toe/README.md
new file mode 100644
index 0000000000..ba1ceba839
--- /dev/null
+++ b/Games/Tic-tac-toe/README.md
@@ -0,0 +1,31 @@
+# **Tic Tac Toe**
+
+---
+
+
+
+## **Description đ**
+
+- Tic Tac Toe is a classic two-player game where players take turns marking the spaces in a 3Ã3 grid. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row wins the game.
+
+## **Functionalities đŽ**
+
+- Two-player game mode.
+- Visual representation of the game board.
+- Real-time updates of the game state.
+- Winning condition check and message display.
+- Winning animation with music.
+
+
+
+## **How to play? đšī¸**
+
+1. Open the `index.html` file in your browser.
+2. The first player (X) clicks on an empty cell to mark it.
+3. The second player (O) takes their turn by clicking on another empty cell.
+4. The game alternates turns between players X and O.
+5. The game checks for a winner after each turn. If a player has three marks in a row (horizontally, vertically, or diagonally), a winning message is displayed, and a winning animation is played.
+6. If all cells are filled without any player winning, the game ends in a draw.
+
+
+
diff --git a/Games/Tic-tac-toe/index.html b/Games/Tic-tac-toe/index.html
new file mode 100644
index 0000000000..6797c039a1
--- /dev/null
+++ b/Games/Tic-tac-toe/index.html
@@ -0,0 +1,29 @@
+
+
+