Error message but yet it works when I test it

HI all,

I am getting the basics of HTML and having problems with the footer.

Below is the code. When I test this it works perfectly BUT I am getting these 2 errors when I run it on class page.

// running test
There should be only one footer tag on your page.
The footer tag should have an id attribute set to “footer”.
// tests completed

CODE:

 <h2>CatPhotoApp</h2>
 <main>
  
<a href="#footer">jump to bottom</a>

   
 <img src='//cdck-file-uploads-global.s3.dualstack.us-west-2.amazonaws.com/freecodecamp/original/3X/6/1/61a3499c5abb165be990aa0c1abd23342e60c663.jpg' 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 atnip 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>
<h3 id="footer">Footer</h3>

Hey!

Use <footer> tag… like this…

<footer id="footer">Footer</footer>

instead of

<h3 id="footer">Footer</h3>

Hope that works. :slight_smile:

1 Like

Thank you, I probably changed it because I had 3 hours of sleep and got confused! haha I am now hopped up on caffeine so I think clearly.