diff --git a/README.md b/README.md
index 1e7eb35..aa17f50 100644
--- a/README.md
+++ b/README.md
@@ -1,26 +1,34 @@
# Create a hangman game
+Team:
+1)Ahmed Mohammed Hassan
+2)Mariam
+3)Hasar Wshar Ali
+
## Overview
+
Create a hangman game!
Example of what we want to accomplish [here](https://codepen.io/cathydutton/pen/ldazc). You can use it to know exactly what the game is about, but do not copy it. Use your own way. Be as creative as you can!
![Example of hangman game](images/example.jpg)
+
### Requirements
1. HTML:
- 1. Add buttons that correspond to each letter from a to z.
- 2. Add a section that will hold the blanks that are going to be equal to the number of characters for the current word.
- 3. Add a div to show the man who's going to be hanged if you lose.
- 4. Add a counter from 10 that will decrease by 1 with every wrong guess.
- 4. Add a button to play again.
+
+ 1. Add buttons that correspond to each letter from a to z.
+ 2. Add a section that will hold the blanks that are going to be equal to the number of characters for the current word.
+ 3. Add a div to show the man who's going to be hanged if you lose.
+ 4. Add a counter from 10 that will decrease by 1 with every wrong guess.
+ 5. Add a button to play again.
2. JS:
- 1. At the beginning use fetch API to retrieve a random word from this api https://random-word-api.herokuapp.com/word?number=1. Make the blanks equal the number of letters in the random word.
- 2. Everytime the user clicks on one of the letters the following should happen:
- 1. The random word is search through to find if it contains the clicked letter, if the clicked letter is part of the random word's letters then it gets shown up instead of the space, if not, then the lives counter is decreased by one. In some rare cases a clicked letter corresponds to two letters in the generated word, if that happens then show both words.
- 2. The button becomes disabled and should only work once.
- 3. If the lives counter reaches 0 then the game is over and the hangman should be HANGED! π¨βπ¦±πͺ
- 4. Clicking on the play again button should do the whole process again.
+ 1. At the beginning use fetch API to retrieve a random word from this api https://random-word-api.herokuapp.com/word?number=1. Make the blanks equal the number of letters in the random word.
+ 2. Everytime the user clicks on one of the letters the following should happen:
+ 1. The random word is search through to find if it contains the clicked letter, if the clicked letter is part of the random word's letters then it gets shown up instead of the space, if not, then the lives counter is decreased by one. In some rare cases a clicked letter corresponds to two letters in the generated word, if that happens then show both words.
+ 2. The button becomes disabled and should only work once.
+ 3. If the lives counter reaches 0 then the game is over and the hangman should be HANGED! π¨βπ¦±πͺ
+ 4. Clicking on the play again button should do the whole process again.
## Coding Phase
@@ -81,11 +89,11 @@ Just as in the **subject**, use the imperative, present tense: βchangeβ not
- Don't leave any logs inside the code.
- All variables should be `const` except for specific cases where you will need to use `let`
- Variables should use camelCase naming convention
-- CSS classes should follow BEM naming convention. *You can find more about it [here](http://getbem.com/naming/).*
+- CSS classes should follow BEM naming convention. _You can find more about it [here](http://getbem.com/naming/)._
- Leave only one empty line between CSS classes. This also goes for different purpose code blocks (like `imports` and variables under it).
- Make sure your naming is right and not confusing i.e. the `navbar` shouldn't be named `header` or when you fetch `movies` your function should return `movies` not `data`
- Make sure you clean your imported modules or files that you don't use before committing. The same goes for any variable, function or piece of code not used.
-- Don't repeat yourself (DRY). Make sure the code you write is reusable and reduce repetition of information of all kinds. For example, don't write two functions that do the same or almost the same job. *Read more about DRY [here](https://en.wikipedia.org/wiki/Don't_repeat_yourself).*
+- Don't repeat yourself (DRY). Make sure the code you write is reusable and reduce repetition of information of all kinds. For example, don't write two functions that do the same or almost the same job. _Read more about DRY [here](https://en.wikipedia.org/wiki/Don't_repeat_yourself)._
If you have issues, google them.
@@ -95,6 +103,5 @@ If you still have issues, talk to your instructors.
-
-NOTE: Be creative with the game's mechanics and design!!!
-Have fun, and Good luck :D
+NOTE: Be creative with the game's mechanics and design!!!
+Have fun, and Good luck :D
diff --git a/images/1.png b/images/1.png
new file mode 100644
index 0000000..6d60f9b
Binary files /dev/null and b/images/1.png differ
diff --git a/images/10.png b/images/10.png
new file mode 100644
index 0000000..ef79a51
Binary files /dev/null and b/images/10.png differ
diff --git a/images/2.png b/images/2.png
new file mode 100644
index 0000000..327642d
Binary files /dev/null and b/images/2.png differ
diff --git a/images/3.png b/images/3.png
new file mode 100644
index 0000000..e9141c1
Binary files /dev/null and b/images/3.png differ
diff --git a/images/4.png b/images/4.png
new file mode 100644
index 0000000..fea210d
Binary files /dev/null and b/images/4.png differ
diff --git a/images/5.png b/images/5.png
new file mode 100644
index 0000000..5fa0437
Binary files /dev/null and b/images/5.png differ
diff --git a/images/6.png b/images/6.png
new file mode 100644
index 0000000..95df6a1
Binary files /dev/null and b/images/6.png differ
diff --git a/images/7.png b/images/7.png
new file mode 100644
index 0000000..47af828
Binary files /dev/null and b/images/7.png differ
diff --git a/images/8.png b/images/8.png
new file mode 100644
index 0000000..86598f0
Binary files /dev/null and b/images/8.png differ
diff --git a/images/9.png b/images/9.png
new file mode 100644
index 0000000..fc49470
Binary files /dev/null and b/images/9.png differ
diff --git a/index.html b/index.html
index feb3555..5214e5a 100644
--- a/index.html
+++ b/index.html
@@ -1,14 +1,42 @@
+