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 8a548aa2f86..c35c147bde0 100644
--- a/challenges/01-responsive-web-design/basic-html-and-html5.json
+++ b/challenges/01-responsive-web-design/basic-html-and-html5.json
@@ -708,9 +708,15 @@
"description": [
"a elements, also known as anchor elements, are used to link to content outside of the current page.",
"Here's a diagram of an a element. In this case, the a element is used in the middle of a paragraph element, which means the link will appear in the middle of a sentence.",
- "
",
+ "
Click to enlarge ",
"Here's an example:",
- "<p>Here's a <a href=\"http://freecodecamp.org\"> link to freecodecamp.org</a> for you to follow.</p>",
+ "
<p>", + "Let's break down the example:", + "Normal text is wrapped in the
Here's a
<a href=\"http://freecodecamp.org\">
link to freecodecamp.org
</a>
for you to follow.
</p>
p element:<p> Here's a ... for you to follow. </p>",
+ "Next is the anchor element <a> (which requires a closing tag </a>):<a> ... </a>",
+ "href is an anchor tag attribute that contains the URL address of the link:<a href=\"http://freecodecamp.org\"> ... </a>",
+ "The text, \"link to freecodecamp.org\", within the anchor element called anchor text, will display a link to click:<a href=\" ... \">link to freecodecamp.org</a>",
+ "The final output of the example will look like this:Here's a link to freecodecamp.org
", "a element that links to http://freecatphotoapp.com and has \"cat photos\" as its anchor text."
],