Learn HTML by Building a Cat Photo App - Step 3

Tell us what’s happening:

Step 3
The p element is used to create a paragraph of text on websites. Create a p element below your h2 element and give it the following text:

Everyone loves cute cats online!

Your code so far

<html>
  <body>
    <h1>CatPhotoApp</h1>

<!-- User Editable Region -->

    <h2>Cat Photos</h2>
</p></h3>Everyone loves cute cats online!</h3>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 3

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

Welcome to the forum @anthonykiprotich1

You have a few coding errors:

  1. replace the closing p at the start with an opening p tag - just remove the forward slash
  2. remove the closing h3 tag from the start of the sentence
  3. at the end of the sentence, replace the closing h3 tag with a closing p tag

For next time, describe the issue in your own words. Learning to communicate problems is a part of becoming a web developer.

Happy coding