Uploaded new cause it were a few pages old

What is wrong here i am at Turn an image into a link as you can see but it dont seem to work any ideas My Challenges:

Nest the existing img element within an a element.
Your a element should be a dead link with a href attribute set to #.
Make sure each of your a elements has a closing tag.

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

CatPhotoApp

Click here for cat photos.

Three kittens running towards the camera.

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

I’m not sure which challenge you’re on, but you’ve already got an img element nested inside of an a.

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

Basically just add an anchor element around your existing picture:

<a href="www.link-to-site.com"><img src="www.dot.com/jpg" alt="jpg"></a>

Doesnt seem to work for me