Learn HTML by Building a Cat Photo App - Step 19

have put in the right element but it keeps say code not correct even tell a friend who is ahead of me to check the code he said its correct but the page wont let me progress it keeps saying the same thing
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>

<!-- User Editable Region -->

      <section>
        <h2>Cat Lists</h2>
        <h3>Things cats love</h3>
        <u1>
        </u1>
      </section>

<!-- User Editable Region -->

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

Your browser information:

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

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

Link to the challenge:

u1 is not ul

yeah is the same thing i write

Yes… You wrote the wrong one…

1 Like

Hell0!
It does appear that you have typed u1 and not ul as Jeremy was explaining to you.
If you are still having the issue, try submitting the code from another browser, or any of the following may help you.

Try the following:

  • Reset step
  • Refresh page (F5)
  • Some browser extensions, such as ad-blockers and dark mode extensions can interfere with the tests.
  • If you are having problems, recommendation is to disable extensions that modify the content or layout of pages, while taking the course.
    • Try a different browser.

Happy coding!:slight_smile:

1 Like

thanks i see now have change it but still wont let me pass that the h3 element not correct

What’s your updated code?

Wait a sec… why do you have a ul element?

1 Like

let me try and update it so u can see

When you add a lower rank heading element to the page, it’s implied that you’re starting a new subsection.

After the last h2 element of the second section element, add an h3 element with this text:

Things cats love:

The instructions don’t talk about ul, so I’d ditch that.

1 Like