Kindly assist with test 19

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

  **Your code so far**

<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <section>
    <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</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>
      <u1>
        <h3>Things cats love</h3>
        </u1>
    </section>
  </main>
</body>
</html>
  **Your browser information:**

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

Challenge: Step 19

Link to the challenge:

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

Two things:

  • I know it might seem a little weird, but you don’t want any content inside the list at this step, just the unordered list tags.
  • Your list tags aren’t quite correct. The tag is a lower case u followed by a lower case l (which stands for unordered list). You have accidentally used the number 1 instead of a lower case l.

P.S. I agree that the lowercase l in the instructions does look like the number 1. Perhaps it’s not the best font to use for code examples? There might be better monospaced fonts to choose from. If I get a chance I’ll look into this and open an PR if I can find a better one that is less ambiguous.

1 Like

Thanks, I realised it and corrected and it worked.

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