Learn HTML by Building a Cat Photo App - Step 20

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

Your code so farstep 20

<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>

<!-- User Editable Region -->

         <h2>Cat Lists</h2>
        <h3>Things cats love:</h3>
        

<!-- User Editable Region -->

      </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/115.0.0.0 Safari/537.36 Edg/115.0.1901.188

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

Link to the challenge:

Please tell us what the problem is 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!

I have the same problem I don’t understand what am I supposed to do

Welcome to the community!

Please, when you have a question of your own, use the Help that appears once a step has been attempted three times without success . It looks like this:
image

This will allow you to post the current code (for the specific step you are having problems with at the time) by using the Preformatted text < /> feature.
In this way, you are able to post your questions, concerns or error messages while providing the code so the community can help guide you to a resolution of the problem.

Step 20 would like an ul element placed after ( below) the h3 element.

This can be completed the same way as the < h2> Cat Photos < /h2> was added below the < h1>CatPhotoApp </ h1> in step 2. The only difference is there is not to be any text between the < ul> opening and < /ul> closing element tags at this point.

< h1>CatPhotoApp </ h1>
< h2> Cat Photos < /h2>

Happy coding! :slight_smile:

1 Like

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