Inform with the Paragraph Element help

Tell us what’s happening:

Your code so far


<h1>Hello World</h1>
<h2>CatPhotoA
<P>Hello paragraph</P>
>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68 (Edition Campaign 34).

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/inform-with-the-paragraph-element

  • you’ve deleted the closing tag for the h2.
  • your <p> tag has capitalised Ps.
  • there is an angle bracket on the last line for some reason.

i dont understand my problem this Make sure your p element has a closing tag.

You did not close the h2 tag

The p should not be capital, it should be <p></p> and you have an extra closing bracket after </p>

<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<p>Hello Paragraph</p>

Opening tag of paragraph is <p>
Closing tag is </p>
The content goes in between of it.

Click :heart: if it passes your challenge!