Introduction to HTML5 Elements help?

It is saying I need a main element and it needs 2 children paragraphs, what am I doing wrong?.

Your code so far


<h2>CatPhotoApp</h
<main>
    <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.</p>
    <p>Purr jump eat the grass rip the couch</p>
</main>

Your browser information:

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

Part of your h2 element is missing. This is causing the parser to think that <main is part of the h2 closing tag.

1 Like

Thanks for the reply! I caught that mistake once I posted the question lol.