From c9427a4fec27738660b673fdf88ef7acf422627c Mon Sep 17 00:00:00 2001 From: MANISH-GIRI Date: Fri, 17 Feb 2017 22:07:55 -0500 Subject: [PATCH] Improve instructions in add images challenge --- challenges/01-responsive-web-design/basic-html-and-html5.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-responsive-web-design/basic-html-and-html5.json b/challenges/01-responsive-web-design/basic-html-and-html5.json index 882bbc72890..68496cc956a 100644 --- a/challenges/01-responsive-web-design/basic-html-and-html5.json +++ b/challenges/01-responsive-web-design/basic-html-and-html5.json @@ -565,10 +565,10 @@ "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\">", + "Note that in most cases, 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.", "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.\">", - "Note that in most cases, img elements are self-closing.", "
", "Let's try to add an image to our website:", "Insert an img tag, before the h2 element.",