Skip to content

Commit b906c48

Browse files
authored
Update README.md
1 parent 07fecd3 commit b906c48

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
11
# tic-tac-toe
2+
23
Blog Post on Tic-tac-toe in JavaScript, HTML, and CSS
4+
### 📕3 in a line of X's or O's on a row, column, or diagonal wins the game. 
5+
### 📕Taking turns is the hardest part! No playing outside the 3x3 grid!
6+
7+
# 🎯 programming requirements
8+
The programming requirements are translated into mroe literal interpretations of the game of Tic Tac Toe.
9+
10+
### 1. 2 players take turns 🎯
11+
🚩 Going back and forth (turns) can be checked by showing whose turn it is and that it changees on click.
12+
13+
### 2. Each of the players marks an X or O in an empty square on a grid of 9 Squares, making a 3x3 arrangement.🎯
14+
🚩 Need to simulate a click action on the different cells, outside of cells, etc.
15+
16+
### 3. 🎯 The square must be empty to place a mark.
17+
### 4. 🎯 It must be your turn to place a mark.
18+
### 5. 🎯 If at any point, 3 X's or O's are arranged in a line on the rows, columns, or diagonals, that X or O player has won.

0 commit comments

Comments
 (0)