Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created December 5, 2016 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/63556b2496ea628953285daa1c0a8a6e to your computer and use it in GitHub Desktop.
Save codecademydev/63556b2496ea628953285daa1c0a8a6e to your computer and use it in GitHub Desktop.
Codecademy export
<!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"></div>
<div class="family"></div>
<div class="enemy"></div>
</body>
</html>
/*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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment