Learn HTML by Building a Cat Photo App - Step 8

i’m a beginner could you please help me out from this

<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
    <p>Click here to view more cat photos.</p>
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/realxing-cat.jpg"alt=""/>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0

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

Link to the challenge:

hello, i see a few problems here. I guess you are trying to add the alt tag?
First thing is you must not modify the img src URL to do this and it looks like you have done that. To fix this, please click on the Restart Step button to reset the code.

After that, add the alt tag to the inside of the img tag but leave a space between it and the src (just one space is enough). Also put the text given to you inside the double quotes of the alt tag).

Give that a try…

yeah i got it thank you for your support

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