Learn HTML by Building a Cat Photo App - Step 9

**Tell us what’s happening:**have done this but its not yet working where im i getting it wong?

Describe your issue in detail here.
<img src=“https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg” “alt”= “A cute orange cat lyimg on its back”>
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 lyimg on its 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/116.0.0.0 Safari/537.36

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

Link to the challenge:

Hello and welcome to the community :smiley:!
Your alt is an attribute and therefore should not be enclosed in quotation marks.

how should it be in that context ive tried all the hints but its not yet working?

You’ve done it correctly. You just have to remove those '''' marks from around your alt attribute.

should be:
alt = “value”
attributes don’t need to be enclosed in quotation marks. Hope this helps.

1 Like

not yet through. when i check the code this what im getting.( Your

img

element’s

alt

attribute value is set to something other than ‘A cute orange cat lying on its back’. Make sure the

alt

attribute’s value is surrounded with quotation marks.

You’ve done correctly by placing your value in quotation marks but because you’ve misspelled the word ‘lying’ they tell you to check that your value is surrounded with quotation marks. Change the spelling and it should work fine.

thank you that one went through! now onto the next challenge.

See more cat photos in our gallery.

stuck at this point which one is the attribute and the target?

I’m not quite sure which step you’re holding by so please post your code. Attributes always go in the opening tag of your element so consider that. Hope this helps.

1 Like
  <p>See more  <a href=_blank= "https://freecatphotoapp.com">cat photos</a> in our gallery.</p>

If you are on to a different step then what you made this topic for you need to create a new topic by using the help button like you did here