Learn HTML by Building a Cat Photo App - Step 5

Tell us what’s happening:
need help. I feel like it’s glitching out!
Your code so far

<html>
  <body>

<!-- User Editable Region -->

  
    <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <main>
    <h1>
    </main>

<!-- 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/115.0.0.0 Safari/537.36 Edg/115.0.1901.203

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

Link to the challenge:

“…adding a <main> opening tag before the h1 element”

This means before the h1 element that is already there. You should not add a new h1 element.

“… and a </main> closing tag after the p element.”

That’s going to be hard to do if you delete the p element :slightly_smiling_face:

I would restart the step to get the original HTML back and then add just one opening <main> tag and one closing </main> tag and make no other changes.

I got it! thanks alot !!!

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