Created
April 1, 2019 07:34
-
-
Save DanyaAlfageh/c143c21c5ab178b23adb5c814e7eb4f9 to your computer and use it in GitHub Desktop.
// source https://jsbin.com/nugireq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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: rgba(0,0,0,.2); | |
} | |
</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: rgba(0,0,0,.2); | |
}</script> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div { | |
width: 150px; | |
height: 150px; | |
border: 2px solid black; | |
display: inline-block; | |
margin: 20px; | |
} | |
#name { | |
background: black; | |
} | |
#hex { | |
background: #000000; | |
} | |
#rgb { | |
background: rgba(0,0,0,.2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment