Linking Anchor Elements- I don't understand what I am doing wrong

Tell us what’s happening:
Describe your issue in detail here.
I cannot seem to get past this part. I have watched the video, looked at the “hints”, what am I doing wrong?

I think this is alright: <a href="#footer">Jump to Bottom</a>

This seems to be incorrect: <h2>id="footer">Copyright Cat Photo App</h2>
I’ve tried leaving it as <footer> rather than <h2> but at this point, I am just throwing it all to see what sticks :slight_smile: I’ve also tried <footer> id="footer">Copyright Cat Photo App</footer> and I have made several other attempts.
After running the tests, this is what I keep getting:
// running tests There should be only one

footer

tag on your page. The

footer

tag should have an

id

attribute set to “footer”. // tests completed


<h2>CatPhotoApp</h2>
<main>

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

<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" 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>

<h2><id="footer">Copyright Cat Photo App</h2>
  **Your browser information:**

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

Challenge: Link to Internal Sections of a Page with Anchor Elements

Link to the challenge:

Hi @Nurseguillory76 !

Welcome to the forum!

Yes it is correct.

That is incorrect because the challenge wants you to use the footer element. Not the h2 element.

You are correct in using the footer element here but it is failing because you have syntax errors. You added an extra > here

<footer> id="footer">

Go back to your code and change this to footer

And make sure you are using the correct syntax.

You are still adding an extra > and <at the beginning here and that is not correct

<h2><id="footer">

You need to change that to a footer and use correct syntax.

Here is the correct structure for adding ids

<some-tag-name id="">text goes here</some-tag-name>

Hope that makes sense!

1 Like

Thanks so much!!! I greatly appreciate your help! This is going to be hard work, but I love it so far. :slight_smile:

1 Like

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