I'm brand new and I don't know what I'm doing!

can i add people? how do i talk to or message individual people?

Your code so far


<img>
<src"https://www.your-image-source.com/your-image.jpg"alt="Author tanding on a beach with two thumbs up.">
<src https://bit.ly/fcc-relaxing-cat
>
</imgsrc><
<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 (X11; CrOS armv7l 11895.118.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.159 Safari/537.36.

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

Hey,

You’ve closed your image tag without actually adding anything to it. (<img>)

Your image tag should be closed after youve added your source and alt - as an example:

<img src="https://google.co.uk/pictureofpenguin.jpg" alt="pictureofpenguin">

Message me if you need any help with it

1 Like