diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.english.md
index 33cfd791d5d..ac916f992ea 100644
--- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.english.md
+++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/add-images-to-your-website.english.md
@@ -22,10 +22,10 @@ Let's add an alt attribute to our img example above:
## Instructions
Let's try to add an image to our website:
-Insert an img tag, after the main element.
+Within the existing main element, insert an img element before the existing p elements.
Now set the src attribute so that it points to this url:
https://bit.ly/fcc-relaxing-cat
-Finally don't forget to give your image an alt text.
+Finally, don't forget to give your img element an alt attribute with applicable text.
## Tests