Indentation of paragraph

Tell us what’s happening:
i can indent those two paragraph no matter how hard I try

  **Your code so far**

<h2>CatPhotoApp</h2>
<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 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 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36

Challenge: Introduction to HTML5 Elements

Link to the challenge:

I would advise you to look at the error message - One of the

elements doesnt have a closing tag. Take a look at your code again.

To add on to this , just a reminder that the tests for the challenges are case sensitive

Thank you. I didn’t realize. It worked.

no problem , html is not case sensitive so technically your </P> tag would work if you use it in a project.
However , it is considered best practice to use lower case for html tags and attributes. Thats probably why the test is case sensitive. (I’m simply guessing).