Please help I am a beginner and I have no idea what I am doing wrong

Tell us what’s happening:
I really don’t know what I am doing wrong. Please help, this is what it is saying, "The a text should be “Jump to Bottom” & The footer tag should have an id attribute set to “footer”.
Your code so far


<h2>CatPhotoApp</h2>
<main>



<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.</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.</p>
</main>
<a href="https://freecatphotoapp.com">cat photos https://freecatphotoapp.com<a/>
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 13729.84.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.130 Safari/537.36.

Challenge: Link to External Pages with Anchor Elements

Link to the challenge:

@Lexilai You need to create <a> tag and it text should be Jump to Bottom. And for the href attribute set it to "#footer". In this form:

<a href="link you want to navigate">Test you want to write</a>

Hope this Help

1 Like

Thank you so much!!!

One more question: where does the footer id go? Its the only element i have wrong right now

@Lexilai It should be in double or single quote and it is assign to href like this:

href="#id"

and the href attrbute should be placed like I shown in the upper form!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.