From b93785be5db5ee533c7ca5efa70265f87e3f0b16 Mon Sep 17 00:00:00 2001 From: Kristofer Koishigawa Date: Sun, 6 Sep 2020 02:27:27 +0900 Subject: [PATCH] fix(learn): update example image URL (#39530) Update example URL in "Add Images to Your Website" challenge to point to example image on https://freecatphotoapp.com. --- .../add-images-to-your-website.english.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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