Anchor issue, jump to bottom, footer tag issue

Need to write code for below:
** Change your external link to an internal link by changing the href attribute to “#footer” and the text from “cat photos” to “Jump to Bottom”.

Remove the target="_blank" attribute from the anchor tag since this causes the linked document to open in a new window tab.

Then add an id attribute with a value of “footer” to the <footer> element at the bottom of the page.**

Error:
There should be only one footer tag on your page.
The footer tag should have an id attribute set to “footer”.

I don’t know what is the issue. Why am I getting the above errors.

Your code so far


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

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

Your browser information:

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

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

Link to the challenge:

Then add an id attribute with a value of “footer” to the <footer> element at the bottom of the page.

At the moment I can only see id="footer" so there is still something missing in your code :slight_smile:

Hey!
So, they gives us the following:

<footer>Copyright Cat Photo App</footer>

And said:

The footer tag should have an id attribute set to “footer”.

So: we need to change it. Not create a new line of code but change the one they gave us.

To do so: inside the pre-existing code: <footer>Copyright Cat Photo App</footer> :

You only need to remove the “>” in the first opening, and write “id = footer” right by its side to set the id.
So the beginning of the code will read like this: <footer id = footer

Finally, do not forget to close correctly, setting a double “>” at the end (remember we removed the “>” in the opening).

At the end of the HTML, then, the solution to the footer problem is:

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

I hope it helped you!