Learn HTML by Building a Cat Photo App - Step 9

Tell us what’s happening:

I coded this alt=“A cute orange cat lying on it’s back”> and it is still not it. so i need help finding where the problem is and how to fix it

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>See more cat photos in our gallery.</p>

<!-- User Editable Region -->

      <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg">alt="A cute orange cat lying on it's back">

<!-- User Editable Region -->

    </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/126.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 9

Hi and welcome to the forum!

For the new alt attribute, make sure it is placed inside the img tag.

You can check the location of the closing angled bracket >. There should be exactly one of these and it should be to the right of the last attribute in your img tag.

Example:
<img src="something" alt="something">

help me on this one please,

 <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg"
     alt="A cute orange cat lying on it's back">

I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').

The alt text has a typo.
See if you can spot it?

you have an extra apostrophe

2 Likes