Help regarding Step 16 (Learn HTML by building a Cat Photo App)

Hi there,
I have done what been asked to do in Step 15 of the lesson:

 <main>
      <h1>CatPhotoApp</h1>
    <Section>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
      <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
    </Section>
    </main>

The website says:

Sorry, your code does not pass. Hang in there.

Hint

Your section element should have a closing tag. Closing tags have a / just after the < character.

Am I missing something? because my closing tag has / in it.

please type the names of the elements with lowercase letters as requested.
<section> not <Section>

Thank you, it worked.

1 Like

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