Can anyone tell me where I am going wrong?
Instructions:
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 element at the bottom of the page.
Code:
<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, stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p>Purr jump eatscratched.</p>
<p>Meowwww om cops stops to pet cats, goes to jail.</p>
<p>Inte 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>
Errors
There should be only one footer tag on your page.
There should be only one footer tag on your page.