Turn an Image into a Link It is saying my a element isn't closed. If I ad the carrot, it denies me based on not having the link nested?

Tell us what’s happening:

Your code so far

<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;
  }

  .thick-green-border {
    border-color: green;
    border-width: 10px;
    border-style: solid;
    border-radius: 50%;
  }

  .smaller-image {
    width: 100px;
  }
</style>

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

<p>Click here for <a href="#"cat photos<img src:"https://bit.ly/fcc-relaxing-cat">/a></p>

<img class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. ">

<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 (Macintosh; Intel Mac OS X 10_13_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1 Safari/605.1.15.

Link to the challenge:
https://www.freecodecamp.org/challenges/turn-an-image-into-a-link

A link needs to be closed with a </a>.

In order for something to be nested inside a link, it needs to be between the <a ....> and the </a>.

you need to nest the IMG … inside… the anchor?

<a href="#">
<img src="https://bit.ly/fcc-running-cats" 
     alt="Three kittens running towards the camera. ">
</a>

As Xija said, right now you have:

a/>

Instead of :

</a>

Just a terminology note, but a caret is this: ^.

These: <> are called “angle brackets” or “less-than/greater-than signs” (depending on what they’re being used for).

Sideways carrot…
I fixed it. I just reset it and copied the text in the same spot, and it worked out fine. thank you all for the input. I detest getting stuck.