Id is not being recognized

Hi guys
I have an anchor element set exactly like

This text will be blurred

<a href="#footer"> Jump to Bottom</a>
<footer id="Jump to Bottom">Copyright Cat Photo App</footer>

It keeps telling me the footer tag needs an id.

What am I doing wrong?

Thanks for the help
Yared

since your are using "#footer" as href it means when someone clicks on your anchor element then it will redirect the page to the element that contain id=footer.
so your code should be :

<a href="#footer"> Jump to Bottom</a>
<footer id="footer">Copyright Cat Photo App</footer>
1 Like

Thank you. That was how did I not see that :smile: