Learn HTML by Building a Cat Photo App - Step 27 please what am i suppose to do here

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>
        <h3>Top 3 things cats hate:</h3>
        <elementName>
        <oi>flea treatment</oi>
        <oi>thunder</oi>
        <oi>Other cats</oi>
        </oi>
      
      </section>
    </main>

  </body>
</html>

Your mobile information:

TECNO KG7h - Android 11 - Android SDK 30

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

Link to the challenge:

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

Hi there :wave:t4: :wave:t4:and welcome to the forum :hugs: :hugs:. You have some errors in your code, so I suggest resetting your code (not the page) and following the instructions. The instructions state:
After the second section element’s last h3 element, add an ordered list with these three list items:

flea treatment thunder other cats

You got the first part of the question which is creating an element after the h3 0f the last section, you did that but you wrote the wrong element name, you are meant to do sth like this:

<elementname>
<list> text given to you </list>
</elementname>

so you are not to write element name there, you are to write ol,
2. then li representing the list and then the text given to you then you close your li. Repeat this step two more times and then close your ordered list.
Hope this helps!! Goodluck!!

1 Like