Learn HTML by Building a Cat Photo App - Step 2

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

i am little bit confusion about to built this step so please give me information about this

The `h1` through `h6` heading elements are used to signify the importance of content below them. The lower the number, the higher the importance, so `h2` elements have less importance than `h1` elements. Only use one `h1` element per page and place lower importance headings below higher importance headings.

Below the h1 element, add an h2 element with this text:

Cat Photos

```

Your browser information:

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

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

Link to the challenge:

<h1>CatPhotoApp</h1>

Your page currently has this one element, an h1 header. This is the main heading text for your page. You can also have sub-headers throughout your page which can be h2, h3 etc, which will appear smaller and less prominent than your main header.

So, for this challenge just add an h2 element directly below the existing h1 element, using the same syntax. The text between the h2 tags should be ‘Cat Photos’.

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