Learn HTML by Building a Cat Photo App - Step 8

Tell us what’s happening:

ive tried then <img src"=https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg/>

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
      <img/> src"=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 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 8

Hello!
Your src attribute should be in your img element, not after.
Your = should be directly after your src then your link wrapped in quotation marks.
Example: <img src="link">

You placed your src attribute and it’s value out of your img element. Place it within <img /> .

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