-
-
Save Amamgbu/3ded286c11a6980ca5e60eed926d9f84 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=1e2caca77488c66b0cd2374e5abb6bf0
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> | |
<link type= "text/css" rel="stylesheet" href="styles.css"> | |
</head> | |
<body> | |
<div class="all" id="one"></div> | |
<div class="all" id="two"></div> | |
<div class="allbig" id="three"></div> | |
<div class="allbig" id="four"></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
.allbig { | |
height: 300px; | |
width: 300px; | |
} | |
#one{ | |
height: 200px; | |
width:200px; | |
background-color: green; | |
border-radius:770px; | |
} | |
#two{ height: 300px; | |
background-color: purple; | |
} | |
#three{ | |
background-color: blue; | |
border-radius:770px; | |
} | |
#four{ | |
background-color: brown; | |
border-radius: 40px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment