Hello, I got a problem with the paragraph, I tried placing it everywhere and it still doesn’t work, I also tried like this: </ See more cat photos in our gallery.> could someone help me?
My code so far
<html>
<body>
<h1>CatPhotoApp</h1>
<!-- User Editable Region -->
<h2>Cat Photos</h2>
<h3> </p> See more cat photos in our gallery. </h3>
<!-- User Editable Region -->
</body>
</html>
Please click the reset button. This will reset the code for this step so you can start from a clean copy of the code.
Then in the editor, please notice that there is one line of code shown followed by one blank line:
<h2>Cat Photos</h2>
They would like you to write in the blank line a new element. This element should be a p element. Like almost all HTML elements, this p element has a starting tag and an ending tag. For eg:
<p>This is a paragraph element</p>
Make sure to create the starting and ending tags. Then put the text in between them with no extra spaces on either side. (Similar to how my paragraph text example above has no extra spaces. Just the spaces between the words.)
Give this another try and let us know if you are successful.