Anchor element - help I'm stuck

I’m stuck on "Basic HTML and HTML5: Link to Internal Sections of a Page with Anchor Elements. " I know it’s something simple; here is my code:

<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,.....</p>

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

Thank you, this was my first post.

I believe the challenge wants you to link to a <footer> element and not an <h2> element

That was a great hint. THANKS, IT WORKED!