I can't seem to get this to work

https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-internal-sections-of-a-page-with-anchor-elements is the link to the challenge, and I can’t get these things done: The a tag should have an href attribute set to “#footer”.
The footer tag should have an id attribute set to “footer”.
I’m pretty sure I am doing it right, but let me know what I can do, and help me understand the confusing directions please.

Could you share your code?

<footer id"#footer"

its too simple, follow the instruction carefully,

you need to change this line

<a href="http://freecatphotoapp.com" target="_blank">cat photos</a>

to

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

href will be changed to #footer, target attribute will be removed and anchor text will be changed to “Jump to Bottom”

Then

<footer>Copyright Cat Photo App</footer>

in above footer you just need to add id=“footer” as below:

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

then go run your code…

tick it as solution, if you able to solve your issue now,

thanks a lot, now I need to fill the 20 characters required lol