My code does not run even though I followed all the steps

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>

<a #footer="https://www.freecatphotoapp.com"Jump to Bottom</a>
<h2 id="footer">"https://www.freecatphotoapp.com"Jump to Bottom</h2>

<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>

<footer>Copyright Cat Photo App</footer>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Linux; Android 10; TECNO B1g Build/QP1A.190711.020) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.58 Mobile Safari/537.36

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

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.


You’ve given an h2 element the id of “footer”, that can’t be right. What happens when you try putting that id on your actual footer?

1 Like

So right now you’re calling #footer in your anchor element with a source link, that’s incorrect.
You want to give the element at the end of your code with the id of footer, like so: <footer id="footer>Copyright Cat Photo App</footer>

The anchor element (<a></a>) uses a href argument, that’s where the user is going to be directed to when the link is clicked. Right now, you want to direct the user to the footer, so you need something like this in your anchor element:

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

THE TUTORIAL ASKS YOU : " To Add an id attribute with a value of footer to the <footer> element at the bottom of the page."


This Phrasing is a little confusing, and seemingly redundant.. But actually, they are referring to two different things:

The <footer> tag looks like this.
<footer>


The Id Attribute of "footer " looks like this:
id = "footer".


And they are asking to have you place them together, in One <tag>:

SIMILAR TO :
<header id="header">


<footer id="[ FILL IN WITH ID]">


You might want to RESET the tutorial, if you have difficulties getting this to work.

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