Skip to content

Instantly share code, notes, and snippets.

@Amamgbu
Forked from anaguzmn/index.html
Last active November 2, 2016 21:00
Show Gist options
  • Save Amamgbu/3ded286c11a6980ca5e60eed926d9f84 to your computer and use it in GitHub Desktop.
Save Amamgbu/3ded286c11a6980ca5e60eed926d9f84 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=1e2caca77488c66b0cd2374e5abb6bf0
<!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>
.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