Need to get some help over here dear coders

Hey Dear coders my name is Ronald Kagame , am from Kampala Uganda, I got interest in coding and i started the study last week but i got stuck at challenge 10 where they say i have to include an a text Jump to buttom.

Hi,

Is this the challenge you got stuck on?

https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-external-pages-with-anchor-elements/

we can’t help if you don’t post your code and the challenge link

Hey brother actually this is the link where i got stuck, i did everything buh only failed one thing,

https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-internal-sections-of-a-page-with-anchor-elements/
I failed this phrase
" The a text should be “Jump to Bottom” "

we can’t help you if you don’t post your code

Hey actually this is the link where i got stuck, i did everything buh only failed one thing,

https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-internal-sections-of-a-page-with-anchor-elements/
I failed this phrase
" The a text should be “Jump to Bottom” "

you are still not posting your code, if you don’t show that we can’t help

Copy the code you wrote in the challange and paste it here in a code block.
The code must have 3 ` in the line before it and 3 in the line after it (or use the code button in the editor).

Hey brother actually this is the link where i got stuck, i did everything buh only failed one thing,

https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-internal-sections-of-a-page-with-anchor-elements/
I failed this phrase
" The a text should be “Jump to Bottom” "

Dude, if you keep answering like that (the answer is still the same) I’m going to report it as spam.
If you post the link to the challange, all we can see is the empty version of it. It can’t show us what you did so far.
Edit: you certainly wrote something in that challange. Copy it and paste it here in the answer (inside a code block).

1 Like

Am sorry sir, its only that am just a starter and dont get some of stuff that you guys are writing down here.
I thought when i post the link i could the help

the link is to say what is the challenge

but we don’t know what you wrote in the challenge if you don’t post it, if you don’t post your code we can’t see what you did wrong and we can’t help you

Write an answer to this thread and when you are doing it, click on the code button in the editor. Which is this one:


Than, you’ll see something like this:

Instead of the words of the second line, you should write the solution you were giving to the challange

This is the part that i failed among the exact challenge,
the part that says The a text should be “Jump to Bottom”

Alright sir, thank you lemmie try that out

<h2>CatphotoApp</h2>
<main>
  
  <a href="#footer">Jump to buttom</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>
<--

Ok, the problems are:

  • The text you wrote in the anchor (a) element is not the one that is required by the challenge
  • You have modified the text inside the footer
  • After the footer there is the opening tag of a comment
1 Like

could you help me out and code it out for me and show me how it should be, because i cross checked my codes with those in the video and everything was fine but i was wondering where i missed out,

and got wrong the a text

this is the text of your a element, look at the failed test and see if there is any difference

the text of your footer is not the one that was there at the beginning, it shouldn’t be changed
and you also added the <-- that shouldn’t be there

type or paste code here
```<h2>CatphotoApp</h2>
<main>
  
  <a href="#footer">Jump to buttom</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">copyright catphot0 App</footer>