Noughts and crosses (tic-tac-toe) is a classic two-player game played on a 3x3 grid. Players take turns placing marks (X
or O
) on the board, and the player who first manages to get three identical marks in a row, column or diagonal wins. If the board is full and there is no winner, the game is a draw.
In the project directory, you can run:
npm run start
npm run lint
npm run preview
npm run build
- Players: The game is played by two players who take turns marking the game board. One player uses
X
, the otherO
. - The game board: The game board is a 3x3 grid consisting of nine squares.
- The goal of the game: The goal of the game is to place three identical marks (
X
orO
) in a row, column or diagonal.
- Players take turns placing marks on an empty square.
- The first player usually uses
X
. - Players continue taking turns until someone wins or the board is full.
- Winning: The player who first manages to get three identical marks in a row, column or diagonal wins.
- Draw: If the board is full and neither player has won, the game is a draw.
- This project is licensed under MIT.
- The used font is licensed under the SIL Open Font License, Version 1.1.
For more information please visit the license files.