Plz help!

<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/web-beginner-en-TlhFi/4/4?curriculum_id=50579fb998b470000202dc8b#

<In what way does your code behave incorrectly? Include ALL error messages.>

Oops, try again. Did you remember to give your image a 1px solid #4682b4 border?

```

h1{
font-family: Verdana, sans-serif;
font-size: 18px;
color: #576D94;
}
p{
font-family: Garamond, serif;
font-size: 18px;
color: #4A4943;
}
image{
height: 100px;
width: 300px;
border: 1px;
solid: #4682b4;
}

<do not remove the three backticks above>

image is not a type selector. Use img.

solid is not a property, but a style value. Include in the border property shorthand rule:

    border: 1px solid #4682b4;

A post was split to a new topic: Border issues - cannot see my mistake