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 ac916f992e..4f82075ac9 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 @@ -10,13 +10,13 @@ forumTopicId: 16640
You can add images to your website by using the img element, and point to a specific image's URL using the src attribute. An example of this would be: -<img src="https://www.your-image-source.com/your-image.jpg"> +<img src="https://www.freecatphotoapp.com/your-image.jpg"> Note that img elements are self-closing. All img elements must have an alt attribute. The text inside an alt attribute is used for screen readers to improve accessibility and is displayed if the image fails to load. Note: If the image is purely decorative, using an empty alt attribute is a best practice. Ideally the alt attribute should not contain special characters unless needed. Let's add an alt attribute to our img example above: -<img src="https://www.your-image-source.com/your-image.jpg" alt="Author standing on a beach with two thumbs up."> +<img src="https://www.freecatphotoapp.com/your-image.jpg" alt="A business cat wearing a necktie.">
## Instructions