From 12658d33fceb484d626fb4d0d794bcf02b974383 Mon Sep 17 00:00:00 2001
From: "Nicholas Carrigan (he/him)"
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.