Menu

[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

  1. Create an HTML page that display’s a Tic Tac Toe grid
  2. Ask for player one’s name (use prompts or HTML Form)
  3. Ask for player two’s name (use prompts or HTML Form)
  4. Display a message on the page that says “Joe’s Turn” (orwhatever player one’s name is)
  5. Let “Sally” take his turn by clicking on a square in thegrid
  6. Mark it with an X (or O)
  7. Display a message on the page that says “Sue’s Turn” (orwhatever player two’s name is)
  8. Let “Jeff” take her turn by clicking on a square in thegrid
  9. Mark it with an O (or X)
  10. Continue alternating until there is a winner or a tie
  11. Display a message declaring the winner (or tie)
  12. Allow the user to Play Again (without re-entering their names)if they’d like
  13. Users should not be able to click in a square that has alreadybeen marked
  14. Note that ALL messages need to be displayed in the DOM (on theHTML page) not in an alert pop up box.

File Structure

  1. Create a project folder called “tic-tac-toe” on your localmachine.
  2. Make sure that inside of the “tic-tac-toe” folder you have thefollowing items:
    1. img folder
    2. css folder
    3. js folder
    4. index.html file
  3. Make sure that the index.html file links off to your JavaScriptfile inside of the js folder
  4. 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


Leave a Reply

Your email address will not be published. Required fields are marked *