Learn HTML by Building a Cat Photo App - Step 5

I dont understand anything.

<main><h1><p></main>
<html>
  <body>

<!-- User Editable Region -->

  
    <h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>See more cat photos in our gallery.</p>
    <main><p></main>

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; KFTRWI) AppleWebKit/537.36 (KHTML, like Gecko) Silk/114.4.6 like Chrome/114.0.5735.330 Safari/537.36

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

Link to the challenge:

Welcome to FCC Community, a community of great people helping each other.

It should go before the opening < h1> and after the last < /p>.

<h1>CatPhotoApp</h1>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>See more cat photos in our gallery.</p>
    <main><p></main>

Nothing needs to be changed from the beginning screen, except to place the opening < main> before the existing opening < h1> and the closing < /main> after the closing < /p>.

You are so very close! I suggest moving the opening main you have added to the top before the h1 opening element. Delete the extra opening < p> that has been added, and I believe you pass the step.

Happy coding! :slight_smile:

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