Internal Sections of a Page with Anchor Elements

Tell us what’s happening:

Your code so far


<a href="#footer">Jump to Bottom</a>

<main>
  
<a href="http://freecatphotoapp.com">cat photos</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>footer</footer>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.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

@PamelaG20 i am here again.

Kindly help

you have a link pointing to an element with a footer id but you don’t have an element with a footer id

@ilenia thanks but please i am confused… what can i do specifically

id is an attribute you can add to any element, with the same pattern of all attributes (nameOfAttribute="valueOfAttribute")
you have not added the id attribute to the required element

Just like @ilenia said. You just need to tell the anchor element where to go. right now it says this
<a href="http://freecatphotoapp.com">cat photos</a>

But the test doesn’t want a website. They want an anchor element (the link) that when you click on it, it will scroll to the bottom of the page.

So all you need to do is connect the anchor element to the footer :slight_smile:

An example is this

< a href= "#bottom"> Go to bottom of page </a>

and in the footer you would put

<footer id="bottom">Bottom of page </footer>