Adding border around cat picture

Tell us what’s happening:
My code so far seems to be right and met the criteria yet i am still getting the following errors which i will show below.
Your img element should have the class thick-green-border.
Give your image a border width of 10px.
Those two errors is what i’m getting even though my image does have a border and my image element does call the thick-green-border class.
Amy help/advice.

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

  .smaller-image {
    width: 100px;
  }
  thick-green-border {
    border-color: green;
    border-width: 10px;
    border-style: solid;
  }
  img {
    border-color: green;
    border-width: 10px;
    border-style: solid;
  }
</style>

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

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

<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.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36 OPR/52.0.2871.64.

Link to the challenge:
https://www.freecodecamp.org/challenges/add-borders-around-your-elements

I meant to say any not amy.

I’ve fixed on of the problems.

try adding a dot before thick-green-border as in
.thick-green-border

I did that and it’s still coming up as error.

ah, you need to apply that style to your picture. as in add thick-green-border to img class

Yh i did it and i just managed to fix the problem by the way thanks for the help guys.

Within your code (the image tag), the last class name is not surrounded by double quotes:

class= thick-green-border

replace with this:

class="thick-green-border"

In addition, I see you have more than one class as well. You can add all classes together by keeping them within double quotes and separated by space:

<img class="smaller-image thick-green-boarder"