Learn HTML by Building a Cat Photo App - Step 8

trying to get past the img src

<imgsrc="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg

<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 -->

      <imgsrc="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg<img> 

<!-- 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/109.0.0.0 Safari/537.36 OPR/95.0.0.0

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

Link to the challenge:

Hi there. In the code you typed, you have imgsrc. These are actually 2 different tags (img and src). img is saying you are linking an image. And src is saying that the following will be the source of the image. There needs to be a space between them. I hope this helps :upside_down_face:

i did and its still saying its wrong do i need a > after img?

Yes. At the end you have another <img> tag. I stead of this you need just a closing >