Learn HTML by Building a Cat Photo App - Step 5

The fifth step is so confusing

<html>
  <body>
  
   <h1>CatPhotoApp</h1>
    <main></main>
    <h2>Cat Photos</h2>
     <!-- TODO: Add link to cat photos -->
    <p>Click here to view more cat photos.</p>
  </body>
</html>

Your browser information:

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

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

Link to the challenge:

Instructions: “…add a <main> opening tag before the h1 element”

You have added it after the h1 element.

Instructions: “add a </main> closing tag after the p element”

You have added it before the h2 element.

hello and welcome to fcc forum :slight_smile:

lets read from instructions

by adding a <main> opening tag before the h1 element, and a </main> closing tag after the p element

now, lets look at your attempt

focus on “before” h1 and “after” p element, address those changes and it should be alright, happy learning :slight_smile:

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