Created
November 14, 2016 01:34
-
-
Save tariqc80/4f8d7c42aab247d9637d38fec2bddcd6 to your computer and use it in GitHub Desktop.
Four Boxes created by tariqc80 - https://repl.it/EW2G/1
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
.all{ | |
height: 100px; | |
width: 100px; | |
border-radius: 20px; | |
} | |
#one{ | |
background-color: green; | |
} | |
#two{ | |
background-color: yellow; | |
} | |
#three{ | |
background-color: blue; | |
} | |
#four{ | |
background-color: red; | |
} |
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>4 Boxes</title> | |
</head> | |
<body> | |
<div class="all" id="one"></div> | |
<div class="all" id="two"></div> | |
<div class="all" id="three"></div> | |
<div class="all" id="four"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment