Created
October 31, 2016 20:07
-
-
Save brianrodri/cc74aafc7ef8515aae00604d488067bd to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=cc74aafc7ef8515aae00604d488067bd
This file contains hidden or 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> | |
<title>Do Now 4.1.0</title> | |
</head> | |
<body> | |
<div id="green"></div> | |
<div id="yellow"></div> | |
<div id="blue"></div> | |
<div id="red"></div> | |
</body> | |
</html> |
This file contains hidden or 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
#red { | |
background-color: red; | |
width: 100px; | |
height: 100px; | |
} | |
#blue { | |
background-color: blue; | |
width: 100px; | |
height: 100px; | |
} | |
#green { | |
background-color: green; | |
width: 100px; | |
height: 100px; | |
} | |
#yellow { | |
background-color: yellow; | |
width: 100px; | |
height: 100px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment