From 2e678479ccbfe6b5a625c4af1aa6099e856e10cf Mon Sep 17 00:00:00 2001 From: Akira Laine Date: Tue, 22 Dec 2015 16:30:19 +1100 Subject: [PATCH] removed self closing tag on "img" element --- .../01-front-end-development-certification/html5-and-css.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/html5-and-css.json b/seed/challenges/01-front-end-development-certification/html5-and-css.json index 8a1cbe6438..2a39761a9c 100644 --- a/seed/challenges/01-front-end-development-certification/html5-and-css.json +++ b/seed/challenges/01-front-end-development-certification/html5-and-css.json @@ -1409,7 +1409,7 @@ "description": [ "You can make elements into links by nesting them within an a element.", "Nest your image within an a element. Here's an example:", - "<a href=\"#\"><img src=\"http://bit.ly/fcc-running-cats\"/></a>", + "<a href=\"#\"><img src=\"http://bit.ly/fcc-running-cats\"></a>", "Remember to use # as your a element's href property in order to turn it into a dead link.", "Once you've done this, hover over your image with your cursor. Your cursor's normal pointer should become the link clicking pointer. The photo is now a link." ],