Help with introduction to HTML5 Elements

am trying to solve this problem but its not working i used the hint and watched the video but still not working for me can anyone help me

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>
    <p> purr jump eat the grass rip the couch scratched sunbathe shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched </p>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

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

That’s pretty close!

Now just wrap your first paragraph inside your main element.

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

<p> purr jump eat the grass rip the couch scratched sunbathe shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched

</p>

</main>

you mean like this

No.

Just put the first paragraph inside your main element.

thanks shimphillip i got it with your help