<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.>
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
```My code is not working for some reason. Can someone explain why?
HTML-code:
My Social Network</div>
<div class="family">
</div>
<div class="enemy" id="archnemesis">
</div>
</body>
CSS-code:
div {
display: inline-block;
margin-left: 5px;
height: 100px;
width: 100px;
border-radius: 100%;
border: solid 2px black;
}
#best_friend {
4px solid #00C957;
}
#archnemesis {
4px solid #CC0000;
}
.friend{
border: 2px dashed #008000;
}
.family{
border: 2px dashed #0000FF;
}
.enemy{
border: 2px dashed #FF0000;
}
Im getting the “Oops, try again. Did you remember to give your #best_friend a border of color #00C957?” error message.
<do not remove the three backticks above>