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 e3b33de4d1..574a9b86a3 100644 --- a/challenges/01-responsive-web-design/basic-html-and-html5.json +++ b/challenges/01-responsive-web-design/basic-html-and-html5.json @@ -1043,13 +1043,14 @@ "title": "Nest an Anchor Element within a Paragraph", "description": [ "You can nest links within other text elements.", - "
<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 target=\"_blank\" 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>
",
+ "target
is an anchor tag attribute that specifies where to open the link and the value \"_blank\"
specifies to open the link in a new tab",
"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 for you to follow.
", + "The final output of the example will look like this:Here's a link to freecodecamp.org for you to follow.
", "a
element within a new p
element (just after the existing main
element). The new paragraph should have text that says \"View more cat photos\", where \"cat photos\" is a link, and the rest of the text is plain text."
],