Learn HTML by Building a Cat Photo App - Step 2

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

Your code so far

<html>
  <body>

<!-- User Editable Region -->

    <h3>Catphotoapp
      </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/117.0.0.0 Safari/537.36

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

Link to the challenge:

Just a friendly tip since you are starting out.

Don’t make any changes that aren’t asked for by the instructions. You deleted the existing h1 element with the text CatPhotoApp but the instructions did not ask you to do that. Any unexpected changes will most likely cause you to fail the tests. I would reset this step to get the original HTML back.

As for the instructions in this step, you are asked to do one thing:


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

Cat Photos

Once you have reset the step to get the h1 element back then you want to add an h2 element, not an h3 element, and the text inside that element should be Cat Photos. So once you are done you should have both an h1 and h2 element in your HTML.

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