i keep seeing this:
i think am correct but am still having this response “You should have three li elements. Each li element should have its own opening and closing tag”
Your code so far
<ul>
<Ii>cat nip</Ii>
<Ii>laser pointers</Ii>
<Ii>lasagna</Ii>
</ul>
```
```html
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<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>
<ul>
<Ii>cat nip</Ii>
<Ii>laser pointers</Ii>
<Ii>lasagna</Ii>
</ul>
</section>
</main>
</body>
</html>
```
**Your browser information:**
User Agent is: <code>Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36</code>
**Challenge:** Learn HTML by Building a Cat Photo App - Step 21
**Link to the challenge:**
https://www.freecodecamp.org/learn/2022/responsive-web-design/learn-html-by-building-a-cat-photo-app/step-21