Learn HTML by Building a Cat Photo App - Step 2

Your code so far

I’m stuck on building the cat I’m on the second step

</html>
  <h2>Cat Photos</h2>

<!-- User Editable Region -->

    </h1>Cat Photos>/h1>
    <h2>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 2

1 Like

This is the code you were given to start off with

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

You should not make any changes to this code at all. The only thing you need to do is
Below the h1 element, add an h2 element with this text:

Cat Photos

This is how you created the h1

<h1>CatPhotoApp</h1>

So how do you think you would make a h2? I suggest you reset the lesson to fix the changes you made

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