[solved]-Need Create Create Simple Two Player Tic Tac Toe Game Javascript Css Html Details Create H Q39076255
I need to create a create a simple two player Tic Tac Toe gamein Javascript, CSS and HTML
Details
- Create an HTML page that display’s a Tic Tac Toe grid
- Ask for player one’s name (use prompts or HTML Form)
- Ask for player two’s name (use prompts or HTML Form)
- Display a message on the page that says “Joe’s Turn” (orwhatever player one’s name is)
- Let “Sally” take his turn by clicking on a square in thegrid
- Mark it with an X (or O)
- Display a message on the page that says “Sue’s Turn” (orwhatever player two’s name is)
- Let “Jeff” take her turn by clicking on a square in thegrid
- Mark it with an O (or X)
- Continue alternating until there is a winner or a tie
- Display a message declaring the winner (or tie)
- Allow the user to Play Again (without re-entering their names)if they’d like
- Users should not be able to click in a square that has alreadybeen marked
- Note that ALL messages need to be displayed in the DOM (on theHTML page) not in an alert pop up box.
File Structure
- Create a project folder called “tic-tac-toe” on your localmachine.
- Make sure that inside of the “tic-tac-toe” folder you have thefollowing items:
- img folder
- css folder
- js folder
- index.html file
- Make sure that the index.html file links off to your JavaScriptfile inside of the js folder
- Make sure that the index.html file links off to your CSS fileinside of the css folder
Expert Answer
Answer to I need to create a create a simple two player Tic Tac Toe game in Javascript, CSS and HTML Details Create an HTML page t… . . .
OR

