Created
October 31, 2016 20:07
-
-
Save brianrodri/445b0becabc47f7758defb6afc3f4d68 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=445b0becabc47f7758defb6afc3f4d68
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> | |
<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 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