No sure what to do to make toward the cat

Tell us what’s happening: not able to complete challange

Your code so far

<img src="https://bit.ly/fcc-relaxing-cat"
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
  .red-text {
    color: red;
  }

  h2 {
    font-family: Lobster, Monospace;
  }

  p {
    font-size: 16px;
    font-family: Monospace;
  }
</style>

<h2 class="red-text">CatPhotoApp</h2>

<p class="red-text">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 class="red-text">Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/add-images-to-your-website

You forgot the closing > for <img>.

You should also add the alt attribute. You can give it a value of, say, "relaxing cats".

Note that the <img> element doesn’t have a closing </img> pair. It’s just <img src="..." alt="...">


Now, what’s been implicit so far is that a page has two parts: the head (upper part) and the body (lower part). Elements such as <style> and <link> belong to the head, while those that actually appear on the page go to the body. So the image should be with the lower half, with the <h2> and the <p> elements.

i added the closing tag. . i have placed the img with the h2 and p. i have also added an alt. it still wont run.

Can I see your code?

does all img go with the h2 and paragraph elements

yes do i ask for forum again?

No, just reply with your code. You can copy and paste it here.

i have completed that task and need help with the next one