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