It says The footer tag should have an id attribute set to "footer"

I’m not sure what my mistake is. It says The footer tag should have an id attribute set to "footer".

<h2>CatPhotoApp</h2>

<main>

<a href="#footer" id=“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”</footer>

You have set the a tag with an id=“footer”
id is a unique attribute, there can be only one.
Clicking on <a href="#footer"> should navigate to some element somewhere else on the page with the id=“footer”

Attributes go inside the < > of the opening tag so this is not technically an attribute at all.
<main id="main-content"> </main>
I’m not sure which challenge this is but there is probably an example somewhere in that lesson too.

In your a tag you are giving it an id of footer. It’s a unique value so only your footer should contain it.

Also make sure id=“footer” is inside of your opening footer tag in the bottom.

I changed the code to
</main>

<footer id=“footer”</footer>

You’re still missing the closing > on the opening tag.

<tagname attribute="some-attribute"> </tagname>

It accepted it though. Might be a bug in freeCodeCamp?

1 Like

Very possibly yes. There are some bugs and the the tests can only confirm so much.

I’m glad you figured it out.

1 Like