Learn HTML by Building a Cat Photo App - Step 33

Tell us what’s happening:

I’ve entered the code as instructed and checked the console working through the code. I got close, but the test still says that my element have a typo or it’s missing something. I’ve checked it multiple times, and there is nothing missing or nothing spelled wrong. I think the code is faulty.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <section>
        <h2>Cat Photos</h2>
        <p>Everyone loves <a href="https://cdn.freecodecamp.org/curriculum/cat-photo-app/running-cats.jpg">cute cats</a> online!</p>
        <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>
      </section>
      <section>
        <h2>Cat Lists</h2>
        <h3>Things cats love:</h3>
        <ul>
          <li>catnip</li>
          <li>laser pointers</li>
          <li>lasagna</li>
        </ul>
        <figure>
          <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
          <figcaption>Cats <em>love</em> lasagna.</figcaption>  
        </figure>
        <h3>Top 3 things cats hate:</h3>
        <ol>
          <li>flea treatment</li>
          <li>thunder</li>
          <li>other cats</li>
        </ol>

<!-- User Editable Region -->

        <figure>
          <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field."> <figcaption "Cats <strong>hate</strong> other cats."</figcaption> </figure> </section> <section>

<!-- User Editable Region -->

      </section>
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Mobile/15E148 Safari/604.1

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 33

1 Like

It is okay. I see you have missed the > in the figcaption starting tag. Also these double quotations inside the figcaption are not needed. Why did you surround the word hate within a strong element, this wasn’t specified in the lesson. Finally, why did you add another new section after the figure element. If you take a closer look, you will find that the closing tag of the section was already written from the previous steps. I hope this helps. Good luck!

Thanks so much, it worked with their corrections!

I appreciate the speedy response and help!

it worked with your corrections