Introduction to HTML5 Elements should i quit I'm already getting stuck and this is pretty level7 9f like1400

Tell us what’s happening:

I’m following all the steps in the video i put the <main> element but it won’t work

Your code so far


<h2>CatPhotoApp</h2>

<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>
<main> <main><p>Purr jump eat the grass rip the couchscratchedsunbathe<main></p>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 7.0; LG-H910) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/introduction-to-html5-elements/

one element has an opening tag, with angular brackets around he name, and a closing tag, with the annular brackets, but also a /
you have like three opening tags for main, you need only one main element tho
and as the hint says you need to put the opening tag of the main element before the opening tag of the first p element, and the closing main tag after the closing tag of the second p element