index.html
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>My Social Network</title>
</head>
<body>
<!--Add your HTML below!-->
<div class="friend" id="best_friend">Friend 1</div>
<div class="friend">Friend 2</div>
<div class="family">The Fam </div>
<div class="enemy">"Friend 3"</div>
<div class="enemy">"Friend 4"</div>
<div class="enemy" id="archnemesis">"Friend 5"</div>
</body>
</html>
stylesheet.css
/*Add your CSS below!*/
div {
display: inline-block;
margin-left: 5px;
height:100px;
width:100px;
border-radius:100%;
border:2px solid black
}
.friend {
border:2px dashed #008000;
}
.family {
border:2px dashed #0000ff;
}
.enemy {
border:2px dashed #ff0000;
}
#best_friend {
border:4px solid #00c957;
}
#archnemesis {
border:4px solid #cc0000;
}
I think I’m messing up the border radius.
Thank you for your time.