Link to Internal Sections of a Page with Anchor Elements footer

Tell us what’s happening:
Hello Guys i just didnt understand how to add id value to footer
Whatever i try i couldnt find a way to do.

Your code so far


<h2>CatPhotoApp</h2>
<main>
  
  <a href="#footer">Jump to bottom</a>
  <h2 id="footer">Jump to Bottom</h2>
  <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>Copyright Cat Photo App</footer>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 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/

To add an id to an element, let’s say <h1>, do the following:

<h1 id="the_name_of_the_id_here"> This is a headline</h1>

The same goes with <footer> which needs the id with a name of footer.

If you have solved these problem. Please share the solution.

Jump to Bottom

Jump to Bottom

What is so mistake in these code. Please explain.

<h2 id="footer">Jump to Bottom</h2>
According to your code your link takes you to h2 instead of the footer. In order to jump to the bottom to the footer, you should give your footer an id with a name of footer instead of giving your h2 an id named footer.

Hey @Manish2261,
It is always advisable to make a separate topic for your question. Always use the “Ask For Help” button on challenge page. It posts your code properly as well as gives the link to the challenge.

Also use the “preformattted text(</>)” button in the reply window to put your code on forum.

Hi,
Have you found an answer yet as I am also struggling with this one!

Make sure to overwrite the anchor hypertext reference link of value http://freecatphotoapp.com with the required value #footer and change it’s contents to that of Jump to Bottom from the original cat photos.
Then add a id attribute to the footer tag with the value footer.
Hope this helps others.