Hangman: The Web App

Instructions for weekly assignment submission

  1. Fork the assignment repo
  2. Clone your Fork to your machine
  3. Complete the weekly assignment
  4. Push your changes to your Fork
  5. Submit a Pull Request back to the assignment repo
  6. Paste a link to of your Fork on Canvas and submit

For this assignment, you will build hangman. This time, you'll build it as a web app!

sampleGif

MVP

  1. The user must be able to play against the computer
  2. The word that the computer chooses must be random. Feel free to use whatever list of words you want.
  3. The user must have a limited number of guesses
  4. After each guess, the website should display current state of the word you are guessing. (ex. A _ _ L E, for apple)
  5. After each guess the website should display a hangman image representing how many guesses are remaining.
  6. The website should tell the user if she wins or loses
  7. The user should be able to restart the game

V2: Bonus

Integrate CSS to make your Hangman game look nicer.