Build a Cat Photo App - Step 8

Tell us what’s happening:

need help on step 8 responsive web design, i was asked to add a stc at the existing img, i have tried typing it in all way i know how, please help stuck, its keeps saying i must check my typo.

Your code so far

<html>
  <body>
    <main>
      <h1>CatPhotoApp</h1>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Everyone loves cute cats online!</p>

<!-- User Editable Region -->

     <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 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36 Edg/145.0.0.0

Challenge Information:

Build a Cat Photo App - Step 8

look at the example, notice that the attribute is inside the angular brackets <>

you still have only <img> with nothing more before the closing bracket >

do you think you can update your code to have the src attribute before the closing bracket?

Hi buddy, by mistakenly you have throw out the src element out of the img element

Kindly do put it inside the img element in order to get your img look in the output.

` this is a self closing tag so you need the whole src inside the img tag if you know what i mean thanks Ian.