Skip to content

Instantly share code, notes, and snippets.

Created August 29, 2016 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/a7a127d7b2153ee031bb701a4641e906 to your computer and use it in GitHub Desktop.
Save anonymous/a7a127d7b2153ee031bb701a4641e906 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<link ref="stylesheet" type="text/css" src="style.css">
<style id="jsbin-css">
div {
width: 150px;
height: 150px;
border: 2px solid black;
display: inline-block;
margin: 20px;
}
#name {
background: black;
}
#hex {
background: #000000;
}
#rgb {
background: rgb(0,0,0);
</style>
</head>
<body>
<div id="name"></div>
<div id="hex"></div>
<div id="rgb"></div>
<script id="jsbin-source-css" type="text/css">div {
width: 150px;
height: 150px;
border: 2px solid black;
display: inline-block;
margin: 20px;
}
#name {
background: black;
}
#hex {
background: #000000;
}
#rgb {
background: rgb(0,0,0);
</script>
</body>
</html>
div {
width: 150px;
height: 150px;
border: 2px solid black;
display: inline-block;
margin: 20px;
}
#name {
background: black;
}
#hex {
background: #000000;
}
#rgb {
background: rgb(0,0,0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment