I am not able to understand what to do and how?

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

  **Your code so far**
<html>
<body>
CatPhotoApp</h1>
</body>
</html>
<h2>CatPhotoApp<h1>
  **Your browser information:**

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

Challenge: Step 2

Link to the challenge:

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

sir this too is not working

HI @fuadqureshi881 !

Welcome to the forum!

I would reset the lesson because you have a few syntax errors.

The challenge wants to you add an h2 element underneath your h1 element with the text Cat Photos

Here is the h1

<h1>CatPhotoApp</h1>

Right below that create your h2 element.

If you need extra help on h2 elements, read through this article

Hope that helps!

Hi @hwapipi !

Unfortunately, your answer is not correct.

You do not want to place h2 elements underneath the html element.
All section heading elements (h1 - h6) belong in the body tag.

For example,

<body>
  <h1>Heading 1</h1>
  <h2>Heading 2</h2>
  <h3>Heading 3</h3>
  <h4>Heading 4</h4>
  <h5>Heading 5</h5>
  <h6>Heading 6</h6>
</body>

Hope that helps!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.