Learn HTML by Building a Cat Photo App - Step 18

Tell us what’s happening:
Describe your issue in detail here.
no idea whats wrong but it says it wont be accepted
Your code so far

<!DOCTYPE html>
<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <section>
        <h2>Cat Photos</h2>
        <!-- TODO: Add link to cat photos -->
        <p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</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>

<!-- User Editable Region -->

      </section>
      <section>
        <h2>Cat Breeds</h2>
        <!-- TODO: Add information about cat breeds -->

<!-- User Editable Region -->

        <h2>Cat Lists</h2>
        <p>Learn about different <a target="_blank" href="https://en.wikipedia.org/wiki/List_of_cat_breeds">cat breeds</a> and their characteristics.</p>
        <ul>
          <li>Siamese</li>
          <li>Persian</li>
          <li>Maine Coon</li>
        </ul>
      </section>
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36 OPR/97.0.0.0

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

Link to the challenge:

I would reset the lesson because some of your code positioning got messed up, and it would be easier to start fresh. Once you reset the lesson, in between the section element you add a h2 with the text that the challenge gives you

<section>

</section>

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