Am stuck even after I indent the paragraph i still receive the error sign

Tell us what’s happening:
Describe your issue in detail here.

 **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>Purry jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scrahtched.</P> 
</main>
 **Your browser information:**

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

Challenge: Introduction to HTML5 Elements

Link to the challenge:

Hello!
I see two issues in your code, let’s look at each of them:

  1. All HTML tags must be closed. That means, creating a <p> element must be closed by creating </p> closing tag. There’s a type error / capitalization error in one of your HTML tags :slight_smile: Try to spot it!

  2. Secondly, you have a single typo in the paragraph that you were to create. One of the words has an extra letter. Try to copy the text from the challenge description and paste it, such that it replaces the current text.

I hope that makes sense - good luck coder!

Firstly, it is considered a good practice to make the tag names lowercase. That may be one of your mistakes. The next one is this:

image
You don’t need the y

Thanks for reaching out

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.