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>
    <h1>/Cat Photos<h2>
  </body>
</html>

Your browser information:

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

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

Link to the challenge:

Tag name must be enclosed with the same tag name.

<body>
     ...
</body>

but you’re trying to do

<body>
     ...
</shoulder>

Hi, welcome to the fCC forum.

When you post your issue, remember to describe it in your own words next time.

Asking a better question will be a great skill in your learning journey.

Your code should be reflect as what the instruction told you to do.
opening tag will have similar closing tag. e.g <h1> </h1> so if the opening tag is <h2> it will have closing tag of </h2>

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