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

Hi

This challenge asks you to add a <main> opening tag after the h1 element.

In your code, the main opening tag is after the p element.

Just move that opening tag up a few lines, until it’s on the line after the h1 element.
(Your </main> closing tag is fine as it is).

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