Your ul element should have an opening tag. Opening tags have this syntax: <elementName>

So I’m stuck on what’s the opening tag for u1. I thought that the h3 would have been the opening tag but that’s not it.

  **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:<u1></u1></h3>
      
    </section>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 19

Link to the challenge:

Hi!
H3 is a heading tag, not the tag used for lists. You need to put the list under the h3 element, after it’s closing tag that looks like this </h3>.

Here is an example of a html list.

<ul>
<li>this is a list</li>
<li>A second item</li>
<li>A third</li>
<ul>

But the lesson doesn’t want you to add list elements, just the ul element.

Tip, the ul element uses a lowercase ‘L’ not a number one. The font used for the lessons makes this easy to mix up.

Oooh thank you so much! It turns out my problem was that I used one instead of l.

1 Like

If you know how you should be able to get your web browser to override website fonts to a font you find more readable.

Might be useful here if you find reading the font the lesson uses hard. :smiley:

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