Don't find the error,

Tell us what’s happening:
There should be only one anchor tag on your page.

There should be only one footer tag on your page.

Passed

The a tag should have an href attribute set to “#footer”.

Passed

The a tag should not have a target attribute

Passed

The a text should be “Jump to Bottom”.

The footer tag should have an id attribute set to “footer”.

Your code so far



<a href= "#footer" >Jump to Bottom</a>

<h2 id= "footer" >Copyright Cat Photo App</h2>

Don’t find the error, don’t let me pass the next task

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:77.0) Gecko/20100101 Firefox/77.0.

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

Link to the challenge:

Please share you entire code. It is difficult to help with partial code.

1 Like

Hello @pagano81,

Please read the following instruction below:

It says that the id footer should be assigned to a <footer> tag. But it is evident from the lines of code you shared that you are assigning the footer id to <h2> tag and not to <footer>.

I hope you understand that the tag used is incorrect.

1 Like