Learn HTML by Building a Cat Photo App - Step 27

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

<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>
      </section>
      <section>
        <h2>Cat Lists</h2>
        <h3>Things cats love:</h3>
        <ul>
          <li>cat nip</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>

<!-- User Editable Region -->

        <h3>Top 3 things cats hate:</h3>
    <ol>
          <li>flea treatmen</li>
          <li>thunder</li>
          <li>other cats</li>
    </ol>

<!-- User Editable Region -->

      </section>
    </main>

  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:109.0) Gecko/20100101 Firefox/109.0

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

Link to the challenge:

Hi!
please am confuse with question?

Your code is correct, except that you have a typo in the text of one of the li elements.

Hey, I’ve been look at this for about an hour. I’ve checked my typos, spacing, and grammar. I’m still being denied. Am I missing something?

You have given flea treament instead of flea treatment.


In the future, please create your own topic when you have specific questions about your own challenge code. Only respond to another thread when you want to provide help to the original poster of the other thread or have follow up questions concerning other replies given to the original poster.

The easiest way to create a topic for help with your own solution is to click the Ask for Help button located on each challenge. This will automatically import your code in a readable format and pull in the challenge url while still allowing you to ask any question about the challenge or your code.

Thank you.

Hey Cryptic,

Thanks for the response. The smallest things, are always the most secretive. Appreciate the feedback.

I will do that moving forward. I didn’t want to double-post as I know some forums ask people to prevent creating multiple posts with the same questions. I just asked off this to prevent clutter for clarity. Regardless, I’ll keep that in mind moving forward.

I just created this account today so I’m learning and listening as I go.

1 Like

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