diff --git a/seed/challenges/01-responsive-web-design/basic-html-and-html5.json b/seed/challenges/01-responsive-web-design/basic-html-and-html5.json index 80cfef4020..a59bf9692f 100644 --- a/seed/challenges/01-responsive-web-design/basic-html-and-html5.json +++ b/seed/challenges/01-responsive-web-design/basic-html-and-html5.json @@ -558,13 +558,13 @@ "description": [ "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.", + "<img src=\"https://www.your-image-source.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.your-image-source.com/your-image.jpg\" alt=\"Author standing on a beach with two thumbs up.\">", "
", "Let's try to add an image to our website:", "Insert an img tag, before the h2 element.", @@ -1287,7 +1287,7 @@ "Now let's create a web form.", "Input elements are a convenient way to get input from your user.", "You can create a text input like this:", - "<input type=\"text\" />", + "<input type=\"text\">", "Note that input elements are self-closing.", "
", "Create an input element of type text below your lists."