Learn HTML by Building a Cat Photo App - Step 5

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

Your code so far

<html>
  <body>

<!-- User Editable Region -->

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

<!-- User Editable Region -->

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (iPad; CPU OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/277.0.555192628 Mobile/15E148 Safari/604.1

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

Link to the challenge:

Hi!

Please explain your coding issue in future when you post to the forum, it is much easier to help when we know what you are stuck with.

You should only have two main tags, not four. The main tags should enclose everything from the h1 element to the p element.

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

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