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 b9055bafb6..528de691b8 100644
--- a/challenges/01-responsive-web-design/basic-html-and-html5.json
+++ b/challenges/01-responsive-web-design/basic-html-and-html5.json
@@ -716,7 +716,7 @@
"Normal text is wrapped in the 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 text, \"link to freecodecamp.org\" will be displayed as a link which a user can click. It is located between the opening and closing tags, and is called anchor text
.
<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
."