Skip to content

Instantly share code, notes, and snippets.

@serabakpak
Forked from anonymous/index.html
Created August 5, 2016 02:50
Show Gist options
  • Save serabakpak/7233fcc084b519dfef4c616a06548224 to your computer and use it in GitHub Desktop.
Save serabakpak/7233fcc084b519dfef4c616a06548224 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: 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>
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);
@serabakpak
Copy link
Author

GA WDI Fundamentals Exercise 3.2.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment