Cat Photo App Footer ID Placement

I have been trying to finish this line for like a day now and I can not figure out where to put the footer id. It is the only thing that is wrong right now and if someone could please help that would be amazing. Thanks :slight_smile:

<a href="#footer">"Jump to Bottom" </a>
  <img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back.">

Blockquote“Jump to Bottom”
A cute orange cat lying on its back.

How do I make it so that the code lines appear

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

<p> <img href="https://freecatphotoapp.com"/>cat photo 
<p> <a href="#footer">"Jump to Bottom" </a>
<img href="https://freecatphotoapp.com"/>cat photo 
 <a href="#footer">"Jump to Bottom" </a>

It would be very helpful to see your full code and a link to the challenge.

Why is the image’s url pointing to the freecatphotoapp link? If I recall this challenge, you are only supposed to change the a and footer elements.

Hello there,

I’ve changed your thread title to describe your problem more clearly. Descriptive titles, such as “Why does my function return undefined?”, are more likely to elicit helpful responses than generic titles, such as “Help please”, or really long titles which should be in the body of your post.

For future posts, if you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.

2 Likes
<h2>CatPhotoApp</h2>
<main>
 <img href="https://freecatphotoapp.com"/>cat photo 
 <a href="#footer">"Jump to Bottom" </a>
 <h2 id="footer">Contacts</h2>
  <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>Copyright Cat Photo App</footer>

Thank you I will be sure to keep that in mind the next time I post :slight_smile:

You should delete this h2 element


Add this part to the footer


<footer **Id goes here** >Copyright Cat Photo App</footer>

Replace **Id goes here** with id of the footer

Hope this helps

You have a lot of syntax errors like this one shown above I suggest click reset this lesson button to restore your current challenge’s code to the starting point and try again.

1 Like

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