From 8c22432b177a9431ab488975865f8b596aa52c9a Mon Sep 17 00:00:00 2001 From: Evan Boehs Date: Sun, 31 Jan 2021 03:27:46 -0500 Subject: [PATCH] fix(learn): add period for readability (#40836) --- .../nest-an-anchor-element-within-a-paragraph.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 9714e55c9c..58d471210d 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 @@ -19,7 +19,7 @@ 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: +` ... ` `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: