i dont know how to put a closing tag
Your code so far
<h1>Hello World</h1>
<h2>CatPhotoApp</h2>
<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/84.0.4147.125 Safari/537.36
.
Challenge: Inform with the Paragraph Element
Link to the challenge:
You used twice single quote instead of using double quote 
ilenia
#3
you are almost there!
just two small issues:
first you need to use lowercase p, you instead have <P>
second issue, you should not have copied the quotes
Oh I haven’t noticed the uppercase p, then I think it’s the only issue because all the following options passed test for me:
<p>"Hello Paragraph"</p>
<p>''Hello Paragraph''</p>
<p>Hello Paragraph</p>

You have typed an upper case opening <P>
tag. It should be <p>
