How can make the image src point to the image of the kitten?

Tell us what’s happening:

Your code so far


<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>
 <img src="https://www.your-image-source.com/your-image.jpg" alt="Author standing on a beach with two thumbs up.">
 <img src="https://bit.ly/fcc-relaxing-cat"
  <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 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36 OPR/62.0.3331.43 (Edition Campaign 34).

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

@Gilbent_Ug Your img element has no closure and no alt attribute.

Should be

<img src="https://mycatimage.jpg" alt="cat image">

It also appears to have a space in the URL which would break the link. Before the “l” in bit.ly

thanks guys…

this thing is still insisting even after ending my src…

<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>

 <img src="https://www.your-image-source.com/your-image.jpg" alt="Author standing on a beach with two thumbs up."><img src="https://bit.ly/fcc-relaxing-cat"alt="cat image"</img src>


<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>

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make easier to read.

See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.

Note: Backticks are not single quotes.

markdown_Forums

Please, at least try using backticks, with html it is impossible to see the code itself, it is rendered on the page…

Anyway, the img element is a self-closing tag, it doesn’t need a closing tag,

You should have only this img not the other one that was an example and shouldn’t be included in your code

This doesn’t have sense for a img element: </img src>

its <img src="url" alt="alt text" />