Good day Fellow members. I would like some assistance with step 22 I have bee stuck on this step whole day. how to to add this image value and its alt value?

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

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>
      <section>
        <h2>Cat Lists</h2>
        <h3>Things cats love:</h3>

<!-- User Editable Region -->

      <section>  <ul>
          <li>cat nip</li>
          <li>laser pointers</li>
          <li>lasagna</li>
        </ul>
        <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg."
 alt="A slice of lasagna on a plate".>



<!-- User Editable Region -->

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36 Edg/109.0.1518.78

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

Link to the challenge:

Hello,
Welcome to the Forums :wave:


Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

You have an extra dot(.) at the end of the src link.

I had the dot removed but I do not get to understand where actually the typo lies because console throws an arror where it states that there should be an image right after the closing tag of an unordered list attribute
which is something that reflects as being done on my code

I really do not understand where the mistake lies

Did you manage to solve this problem ?

I just skipped the step.

Please post your code if you still have it and want to know your mistake

Hi welile, my tip is to keep your code clean!
Check every line; there are some . that should not be where they are. Also close your section: you missed one. good luck

<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg"
 alt='A slice of lasagna on a plate'

Hi @WELILE ,
You have added an additional DOT . before the closing tag of the image.
alt="A slice of lasagna on a plate".>
Remove the DOT & you’re good to go! :slightly_smiling_face:

Mod edit: removed solution

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.