Images is not added in thata

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>
<imgsrc=" https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg"alt="Relaxing Cat">
<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 (Linux; Android 9; FLA-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Mobile Safari/537.36

Challenge: Add Images to Your Website

Link to the challenge:

Take care, img is a tag, if you don’t space it from source there’s an error.

This will work:

<img src=" https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg"alt="Relaxing Cat">

add a space before the src and it should work, it should be something like this:

<img src=" https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="Relaxing Cat">

hope you get it

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