<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/7?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 #archnemesis a border of color #CC0000?
HTML Code
My Social NetworkCSS
div {
display: inline-block;
margin-left: 5px;
height: 100px;
width: 100px;
border-radius: 100%;
border: 2px solid;
color: black;
}
#best_friend {
border: 4px solid #00C957;
}
#archnemsis {
border: 4px solid #CC0000;
}
.friend {
border: 2px dashed #008000;
}
.family {
border: 2px dashed #0000FF;
}
.enemy {
border: 2px dashed #FF0000;
}
What am I missing? Am I doing something wrong? Any help would be appreciated.
<do not remove the three backticks above>