Learn HTML by Building a Cat Photo App - Step 8

Tell us what’s happening:
I think I did it but the system said “you are wrong!” :frowning:

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->

<!-- User Editable Region -->

      <p>See more cat photos in our gallery.</p>
      <imgsrc="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg">


<!-- User Editable Region -->

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

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36 OPR/96.0.0.0

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

Link to the challenge:

Hi!
You’re almost there!

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

You need a space between the ‘img’ and ‘src’ to pass the test. The web browser can’t read the code if the element and attribute are squashed together.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.