Learn HTML by Building a Cat Photo App - Step 6

Hi. I took this course, except for step 6, I’m stuck with spaces. I need to make 6 spaces, but something is wrong and my assignment is not accepted no matter how many spaces I put in.

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

Link to the challenge

I think there’s a weird anomaly with this course as the inner text of the p element changes without explanation at some point during the course.
Your p element is indented correctly (as the challenge specifies). So you have completed the challenge correctly.
To pass the challenge however, you must change the text to ‘See more cat photos in our gallery.’

h1 element should be found within the main element:

<main>
      h1
      h2
      comment
      p
</main>

Put between ‘p’ tags text “See more cat photos in our gallery.”

Ah yes, that too… hadn’t noticed that.

Oh, yeah, it was really something strange. It works now, but the structure was changed by itself after refreshing the page :slight_smile:

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