What's wrong here guys <a href="#footer">jump to bottom</a> ... <h2 id="footer">footer</h2>

what’s wrong here guys … they say The footer tag should have an id attribute set to “footer”.
how can i do it

Hello @mohamed.maher dont let it seem complicated. The footer id would give the footer a unique identifier that can be used to style in CSS or perform other JavaScript functions on that element. this is how it is done:

<footer id="footer">This is how you create a footer id</footer>

3 Likes

@chinonsoebere

jump to bottom ...

footer

i've typed this but, There should be only one footer tag on your page.
jump to bottom ...

footer

@chinonsoebere
could you please type the whole code

One more thing i noticed about your topic is that, you should not use the

element as the footer. “footer” itself is a tag .

Please share your code. i can take a look at it for you.

jump to bottom ...

footer

this is the test
Change your external link to an internal link by changing the href attribute to “#footer” and the text from “cat photos” to “Jump to Bottom”.

Remove the target="_blank" attribute from the anchor tag since this causes the linked document to open in a new window tab.

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

@chinonsoebere
thank you i did it

Hello @mohamed.maher this is the solution to the challenge

<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, 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>
2 Likes

Anytime. Glad you figured it out

Thank you very much,you are the best.