Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created September 17, 2015 15:34
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 chuck0523/92fa0c29a75ed85f6cf1 to your computer and use it in GitHub Desktop.
Save chuck0523/92fa0c29a75ed85f6cf1 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>fffORffffff</title>
<style type="text/css">
body {
padding: 10%;
background-color: #333;
font-family: monospace;
}
.threeLetters {
float: left;
margin-right: 10px;
width: 150px;
height: 150px;
background-color: #fff;
font-size: 30px;
text-align: center;
line-height: 150px;
}
.sixLetters {
float: left;
margin-right: 10px;
width: 150px;
height: 150px;
background-color: #ffffff;
font-size: 30px;
text-align: center;
line-height: 150px;
}
.possibleColor {
float: left;
width: 150px;
height: 150px;
background-color: #f0f0f0;
font-size: 30px;
text-align: center;
line-height: 150px;
}
</style>
</head>
<body>
<div class="threeLetters">
#fff
</div>
<div class="sixLetters">
#ffffff
</div>
<div class="possibleColor">
#f0f0f0
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment