How can i make the link internal ?please

**Tell
I cant understand how can i change the link

Your code so far


<h2>CatPhotoApp</h2>
<main>

<a href="http://freecatphotoapp.com">Jump to Bottem </a>

</main>

<footer>Copyright Cat Photo App</footer>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; SM-J810F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36.

Challenge: Link to Internal Sections of a Page with Anchor Elements

Link to the challenge:

There are a couple issues with this code.

  1. There is a typo in “Jump to Bottom”
  2. To make an internal link you should replace the URL with something like #id-name. You also need to define your id later in your code.

An example of #2 would be…

<a href=#last>Last Paragraph</a>

<some code>

<p id=last>This is the last paragraph</p>

Your’re Suppose to change

<a href="http://freecatphotoapp.com">Jump to Bottom </a>
TO
<a href="#footer">Jump to Bottom </a>

The #hashtag allows you to go to jump to a section within the page you are on
hope that makes sense.
Please Check your spelling too You spelled Bottom, ‘bottem’.