Internal /external source attributes

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
  
  <a "#footer"="http://freecatphotoapp.com">jumb fo 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>Copyright Cat Photo App</footer>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-internal-sections-of-a-page-with-anchor-elements

VvToo many mistakes.

First thing. Please reset the code back to what it was using the reset button.

Next, reread the instructions. First instruction says to set the <a href tag to #footer which means that instead of href pointing to an external url you now want it to point to an internal anchor point
a href=“#footer”
Next, you need to tell the browser where to find this internal link. So create an id attribute inside the footer tag and call it footer also. To match the href attribute you made in the previous step. Now when you click the link it will take you down to the footer area rather than to a whole new page,

Thanks hbar1st,
The first 4 steps have worked remaining last two. Kindly give a hint on how to go about the last statement.

pls repost your newest code and your current problem . Use a code block when you post so we can see your code.

like this:
```
my new code goes here in between two lines of 3 backticks
```

this is my newer code

Your code so far


<h2>CatPhotoApp</h2>
<main>
  
  <a href="#footer">jumb to the 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>Copyright Cat Photo App</footer>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-internal-sections-of-a-page-with-anchor-elements

you got the href part correct! woohoo!

Now refer back to the instructions…

they said to add an id attribute to the footer tag.

Here’s another example to help you.
if I want to add an id attribute to the main tag, then I would do it like this:
we are given:
<main>
and I will rewrite it as:
<main id="main">

so can you use my example but do it for the footer tag (not main)?

Hi, could yew please help me. i don’t know what to do now.

https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/link-to-internal-sections-of-a-page-with-anchor-elements/

Give you footer an id. And give that id a name according to what is in the instruction.

<footer id="idName">Footer content goes here</footer>

Oh. Make sure that the name of the id attribute has the similar name you provided in your href attribute. Except that the id has no pound sign in it.

Remove the target="_blank" and then change the value of thehref to #footer.
<a href="#footer">Jump to Bottom</a>

Step 3:
You have a footer tag, right? Don’t change anything in it, just add someid attribute inside the opening tag with a value ‘footer’.

<footer id="footer">Copyright Cat Photo App</footer>

The a tag should have an href attribute set to “#footer

1 Like

Hi kutse,

On what areas specifically do you need help?

still the issue not solved, still trying it out with your guide

post your code and the error you see and we will help

sorry I can’t see your code. To paste code in a code block, use three backticks above and below the code in separate lines like this:
```
put code between these backtick lines
```