Error on inserting pic

Error : Your image should have a src attribute that points to the kitten image.
how to debug this


<alt>

    <img
    
    src="‪E:\wallpaper\venom.jpg"
     alt="Author standing on a beach with two thumbs up."> 
   
    
    
</alt>
<h2>CatPhotoApp</h2>
<main>
  
  
  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/add-images-to-your-website

You don’t have to insert your own pic in code because link to the image to be inserted is already give in challenge. And also there is no alt tag, its an attribute.
Try solving it now.

Even after editing like u said the error remains same.

Read the instructions carefully.
It says src attribute to be set to https://bit.ly/fcc-relaxing-cat .
And you have also made a tag srcattribute, which is not a tag.
Remove that and set your src attribute to right link.

Sorry.I cant catch your words,will u repeat it again please . I’am new to HTML basics ,so i’ll struggle alot.

same error is repeating

Code should be as follows:
Do you understand this?

<main>
  <img src="https://bit.ly/fcc-relaxing-cat" alt="relaxing-cat-image">
  
  <p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
  <p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>

Tq alot bro…Finally the error has gone .