This is a Tic Tac Toe game implemented using HTML, CSS, and JavaScript. The game features a player versus an AI opponent that uses the Minimax algorithm to make optimal moves.
Tic Tac Toe is a classic game played on a 3x3 grid. The objective is to get three of your own symbols (X or O) in a row, either horizontally, vertically, or diagonally. This project implements the game using web technologies and includes an AI opponent that uses the Minimax algorithm to play optimally.
You can try out the game by visiting the live demo.
Contributions are welcome! If you'd like to contribute to this project, please follow these steps:
- Fork the repository.
- Create a new branch: git checkout -b feature/your-feature
- Make your changes and commit them: git commit -m 'Add your feature'
- Push the changes to your forked repository: git push origin feature/your-feature
- Open a pull request in the main repository. Please ensure your code follows the existing code style and include relevant tests for your changes.