How to add image in a website

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
<img
src="https//bit.ly/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>
alt="relaxing cat">

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 6.0; Candy Build/MRA58K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Mobile Safari/537.36.

Challenge: Add Images to Your Website

Link to the challenge:

You just need to close your image-element with “>” and you shold be good

Can you show me bow ?

Good evening!

  1. https: ‘:’ are missing!
  2. put ` alt=“relaxing cat” in after fcc-relaxing-cat

=> <img src="https://bit.ly/fcc-relaxing-cat" alt="relaxing cat">

1 Like