I can’t seem to create the p element even after following all the processes.
Your code so far
<html>
<body>
<h1>CatPhotoApp</h1>
<!-- User Editable Region -->
<h2>Cat Photos</h2>
</p>See more cat photos in our gallery.<P>
</body>
</html>
<!-- User Editable Region -->
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36
Look at the syntax of your h2 element.
Compare the opening and closing tags with your p element.
You should use the same syntax (e.g. <element>content</element>)
Note also that all HTML element tags are in lowercase.
Hi there,
Under h2, your (p) taps are opposite you put the closing tag to the opening tag and your opening tag at the closing tag.
So you need to change tham to opne with your text here.
Hope this helps