diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph.md index d6f7549e50..fc1474fcc8 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/nest-an-anchor-element-within-a-paragraph.md @@ -17,11 +17,23 @@ You can nest links within other text elements.
``` -Let's break down the example: Normal text is wrapped in the `p` element: -`Here's a ... for you to follow.
` Next is the *anchor* element `` (which requires a closing tag ``): -` ... ` `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: -` ... ` The text, **"link to freecodecamp.org"**, within the `a` element called `anchor text`, will display a link to click: -`link to freecodecamp.org` The final output of the example will look like this: +Let's break down the example. Normal text is wrapped in the `p` element: + +`Here's a ... for you to follow.
` + +Next is the *anchor* element `` (which requires a closing tag ``): + +` ... ` + +`target` is an anchor tag attribute that specifies where to open the link. The value `_blank` specifies to open the link in a new tab. The `href` is an anchor tag attribute that contains the URL address of the link: + +` ... ` + +The text, `link to freecodecamp.org`, within the `a` element is called `anchor text`, and will display the link to click: + +`link to freecodecamp.org` + +The final output of the example will look like this: Here's a [link to freecodecamp.org](http://freecodecamp.org) for you to follow.