I need gelp what am i doing wrong?

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

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>
<img src http://www.bit.ly/fcc-relaxing-cat atl=fcc-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 (X11; CrOS x86_64 14092.5.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.5 Safari/537.36

Challenge: Add Images to Your Website

Link to the challenge:

You have some errors.

First of all, you need the right format you are missing some " and = and a closing tag, >. You have:

<img src http://www.bit.ly/fcc-relaxing-cat atl=fcc-relaxing cat

Your format should be something like the example:

<img src="https://www.freecatphotoapp.com/your-image.jpg" alt="A business cat wearing a necktie.">

Notice all the little characters.

You also misspelled “alt”.

Next, you need the url (for the src) exactly as given the description (it is different than the one in the example.

When I fix those mistakes, your code passes for me.

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