I am entering the code in shown way but it is saying my text is either omitted or typo

Tell u894658s what’s happening:
Describe your issue in detail here.

Your code so far

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>
    <h3></p><seemorecatphotosinourgallery></h3>
  </body>
</html>

Your mobile information:

RMX3581 - Android 11 - Android SDK 30

Challenge: Learn HTML by Building a Cat Photo App - Step 3

Link to the challenge:

You appear to have created this post without editing the template. Please edit your post to 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!

Hi there and welcome to our community!

This is the starting code for this step:

<html>
  <body>
    <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>
  </body>
</html>

Your code has h1 and h2 elements, which are using for headings. They consist of an opening tag (e.g. <h1>), text content (‘CatPhotoApp’) and a closing tag (</h1>). Directly below the h2 element, you should now create a p (paragraph) element using the same syntax. You should have an opening p tag, the specified text content and a closing p tag. You should not have h3 tags (which are another type of sub-heading element).