<PLEASE USE THIS 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-jNuXw/0/5?curriculum_id=50579fb998b470000202dc8b
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
Oops, try again. Did you remember to give your .friend class a border of 2px dashed #008000?
</body>
/Add your CSS below!/
div {
height: 100px;
width: 100px;
border-radius: 100%;
border: 2px solid black;
display: inline-block;
margin-left: 5px;
}
.friend {
border: 2px dashed #080;
}
.family {
border: 2px dashed #00F;
}
.enemy {
border: 2px dashed #F00;
}
<do not remove the three backticks above>