Tell me what's wrong the footer code

Tell us what’s happening:
every time I try to run the test it stops me

Your code so farLink to Internal Sections of a page with Anchor elements


<h2>CatPhotoApp</h2>
<main>

<a href="#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">"Jump to Bottom</footer>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0.

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

Link to the challenge:

Hi and welcome to the forum!

You don’t want two closing >

Hey @oashibrayhanspandan

you have closed the footer tag before the id attribute so the browser only sees that there is a <footer> tag and after that everything which is id="footer">"Jump to Bottom is just a normal text according to the browser. Remove that closing bracket > which you have added to the <footer> tag

1 Like

I have tried it but it isn’t working

Which one did you remove? What is your new code?

<footer> id="footer">
id= "footer"

That is not your full code, but it looks like you deleted the wrong >


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 (’).

iI got it but still it’s stoping me

what do the tests say? what’s your code now?

@oashibrayhanspandan you wrote <footer> id="footer">"Jump to Bottom</footer> . In your code the id="footer" is not a code because you wrote it behind the HTML Tag. Your code’s output will be like this

id=“footer”>"Jump to Bottom

Your <a href="#footer"></a> is not working too. Because there is no tag with id="footer".
If you change some code which I said on the upper, your code will work.
Hope This Help

@oashibrayhanspandan delete

<footer👉>👈 id=“footer”>

It will work.

Now I have gone trough it

Hi,
Your footer should be like this:

<footer id="footer">Jump to Bottom</footer>

I removed the ‘>’ sign just after footer and double quotes just before ‘Jump’.

Also, I believe you should include something else in the footer instead of “Jump to Bottom” (it need not be same like the anchor tag text).

I hope this helps. :slightly_smiling_face:

[quote=“oashibrayhanspandan, post:1, topic:427970”]
<footer>
[/you closed the the footer before nesting the id
]