From 12658d33fceb484d626fb4d0d794bcf02b974383 Mon Sep 17 00:00:00 2001 From: "Nicholas Carrigan (he/him)" Date: Thu, 4 Feb 2021 00:04:44 -0800 Subject: [PATCH] fix(i18n, learn): more crowdin fixes (#40905) --- ...st-an-anchor-element-within-a-paragraph.md | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) 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 d6f7549e50e..fc1474fcc81 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.