Please, what is the error here please... am really exhausted now... anyone here, please help save a soul 😁😁😁😁

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>
      <ul>
        <li>cat nip</li>
        <li>laser pointer</li>
        <li>lasanga</li>
      </ul>
    </section>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Linux; Android 11; SM-A226B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.62 Mobile Safari/537.36

Challenge: Step 20

Link to the challenge:

Hello there @Lexis.
You already have the unordered list <ul> element in your code. All you have to do is create three <li> elements in between the <ul> and place the three values specified in those three <li> elements respectively.

Happy Coding :+1:!

Is it not to be created with the words giving or just the elements… i dont understand please

Nest three list items within the ul element to display three things cats love: cat nip , laser pointers and lasagna .

In this sentence you’re provided with three words, cat nip, laser pointers and lasagna. You will create three <li> and place each word into a <li>. That means you will have something like:

<ul>
  <li>first word</li>
  etc...
</ul>

Thats exactly what i did with each word placing them as the example was giving but it keeps giving the same old thing… is there any other way to put it again…
We have
GOOD BETTER AND BEST
And then i was asked to put thwm in three different bracket, using each to form a sentence right??
GOOD right
BETTER
BEST

So please tell me where my mistake is :thinking::thinking::thinking::thinking::thinking::unamused::unamused::unamused::unamused:

1 Like

Looking at my code up there so far, is there any differences between your example down here and the Code up there??
I stand to be corrected please

1 Like

Yes. In your third <li> you have β€œlasanga” instead of β€œlasagna” :grin:

1 Like

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