I need help with that

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

i need help with that, i dont know where to put that?
i did what the instructions said but nothing is happening.

So, you have a tag called <footer> and you need to add an id="footer" to it.

if you post your code, we can try to help you further if you still need it.

I have but it says i can only have one footer tag on the page.

There should be only one anchor tag on your page.
There should be only one footer tag on your page.
The a tag should have an href attribute set to “#footer”.
The a tag should not have a target attribute
The a text should be “Jump to Bottom”.
The footer tag should have an id attribute set to “footer”.

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

Yep, the tag name is footer (your bottom line), but the name is not enough.
When someone click at “Jump to bottom” he must be moved to the place precisely marked with id=“footer”.
So, you really need one footer tag (existing). And one id with the attribute “footer” inside your footer opening tag.

instead of

<footer>

you need

<footer id="footer">

thank you so much that worked just fine. Sorry all new to this.

1 Like