Tell us what’s happening:
Describe your issue in detail here.
I’ve added a new image with the correct src value and its alt value, yet it’s saying I’m not. Everywhere I check online says I’m doing it correctly.
**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 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.">
</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/103.0.5060.134 Safari/537.36 Edg/103.0.1264.71
Challenge: Learn HTML by Building a Cat Photo App - Step 21
Please do not reply on someone else’s post with a lesson that is completely related to their post. It is considered poor forum etiquette.
if you’ve checked online for ideas how to solve the lesson you’re stuck on, searched the forum and still can’t solve the lesson please make your own new topic post. It is easier to help if you do this.
You can do this by pressing ‘new topic’ on the front page of the forum, or ‘ask for help’ on the lesson you are stuck on.
I am on step 21, line 19. Line 8 was correct. The new instructions are to add a new image with an src attribute value to: https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg
and its alt attribute value to: A slice of lasagna on a plate.
All of this is to be after the unordered list (which ends on line 18).
I entered pretty much what was on line 9, minus the a href value and changing the other values to match the instructions.