Is it not working and I follow the instructions

Tell us what’s happening:

Your code so far


<main>
<h1>Hello World</h1>
<p>Hello Paragraph</p> 
<p2>kitty ipsum dolor sit amet, Purr jump eat the grass rip the couch</p2>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Safari/605.1.15.

Challenge: Introduction to HTML5 Elements

Link to the challenge:

Unlike header the h1
with paragraps we ussually dont use it like p p1
but just keep paragraphs.

Then, create a main element and nest the two p elements inside the main element.
You did good here really but did the texts tell you to add your own text?
Where did the h1 come from?

<p2> is not an HTML tag

In the task list it is stated that

The opening main tag should come before the first paragraph tag.

Your structure is like this

<main>
<h1>Hello World</h1>
<p>Hello Paragraph</p>

You’ve put the main tag at the top.

I figured it out.

Thank you!