Basic HTML and HTML5: Link to Internal Sections of a Page with Anchor Elements (Help!)

I am having trouble doing this task:
The footer tag should have an id attribute set to “footer”.

My code so far


<h2>CatPhotoApp</h2>
<main>
  
  <a href="#footer"="http://freecatphotoapp.com" <id="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>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

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

The link must be referred using href="link" attribute , but you are missing it and you don’t need that <id="footer" , you can remove that.

Here, id="footer" should not be a tag. id="footer" should be placed inside <footer id="">, do not place it like a tag, it’s wrong

these are my tasks, but i have problem with understanding what the last task is telling me to do.
i am a newbie and a first time programmer, can you explain clearly…sorry.

Thanks.

I will make it clear,

First, reset your code.

  1. Then in the place of the link href="" call the id as footer ( you should remove this link “http://freecatphotoapp.com” and also the target= attribute) , like you have already done
    <a href="#footer" (This is correct)
  2. In your <footer></footer>, you have to create one id="footer", it should be like
    <footer create-id-here></footer>
  3. Now the anchor text should be changed to Jump to bottom in <a href="">text here</a>

thank you very much, i have finally got it correct.