Beginner needs help, please

I’m only on Lesson 11 (I think that’s right).

I cannot figure out how to accomplish this task:

add an id attribute with a value of “footer” to the element at the bottom of the page.

Here’s the line I think it’s supposed to be placed:

Copyright Cat Photo App

I think this is what needs to be added but it’s obviously incorrect or the placement is incorrect:

<p id="footer"

It seems the correct code should be within an href but the instructions said only one href and I already have one that is definitely correct.

This did not print correctly!
it’s interpreting the commands rather than printing what I typed.
the link to Copyright Cat Photo App is within the footer command.
I did follow the “footer” with the closing p command

Use the button for preformatted text to show us your code. and give us a link to the challenge you’re having a problem with.

Grab

  <a href="#footer" http://freecatphotoapp.com">Jump to Bottom</a>
or does it go in this line at the end of the code?:
<footer>Copyright Cat Photo App</footer>

Here’s all the code:

<h2>CatPhotoApp</h2>
<main>
  
  <a href="#footer" http://freecatphotoapp.com">Jump to Bottom</a>
  
  <img src='//cdck-file-uploads-global.s3.dualstack.us-west-2.amazonaws.com/freecodecamp/original/3X/6/1/61a3499c5abb165be990aa0c1abd23342e60c663.jpg' 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>Copyright Cat Photo App</footer>

https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-internal-sections-of-a-page-with-anchor-elements/

I’ve accomplished all but the final instruction

OK, so the instructions say to give the footer an id of footer.
So essentially you should have

<footer id="footer">...</footer>

Make sense?

-Nao

Yes, I understood the purpose but was using the incorrect command. Thanks for your help!