Stuck on Link to Internal Sections of a Page with Anchor Elements

I am totally stuck on the freecodecamp Basic HTML and HTML5: Link to Internal Sections of a Page with Anchor Elements. For some reason I cannot figure this out.

I got the first part (at the top)
Jump to Bottom

but I am stumped at the end part

footer

This is the message I get:
There should be only one footer tag on your page. (I can only find 1 on the page)
The footer tag should have an id attribute set to “footer”. (I thought I did set the id attribute.

I cannot find any other footer tag
What am I doing wrong???
code

Plz your code here, we can help you easily.
this is all my code and pass

<h2>CatPhotoApp</h2>
<main>
  
  <a href="#footer">Jump to Bottom</a>
  
  <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">
  
  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff. Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched. Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched. Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff. Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
  <p>Meowwww loved it, hated it, loved it, hated it yet spill litter box, scratch at owner, destroy all furniture, especially couch or lay on arms while you're using the keyboard. Missing until dinner time toy mouse squeak roll over. With tail in the air lounge in doorway. Man running from cops stops to pet cats, goes to jail.</p>
  <p>Intently stare at the same spot poop in the plant pot but kitten is playing with dead mouse. Get video posted to internet for chasing red dot leave fur on owners clothes meow to be let out and mesmerizing birds leave fur on owners clothes or favor packaging over toy so purr for no reason. Meow to be let out play time intently sniff hand run outside as soon as door open yet destroy couch.</p>
  
</main>
  
<footer id="footer">Copyright Cat Photo App</footer>

Hope you figure out the reason.

1 Like

Thank you Sai! That worked!
I guess I didn’t need the h2 element.

NP. They said

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

It means you must add id footer to footer tag, not h2 tag. That’s all you need notice.