Skip to content

Instantly share code, notes, and snippets.

@tariqc80
Created November 14, 2016 01:34
Show Gist options
  • Save tariqc80/4f8d7c42aab247d9637d38fec2bddcd6 to your computer and use it in GitHub Desktop.
Save tariqc80/4f8d7c42aab247d9637d38fec2bddcd6 to your computer and use it in GitHub Desktop.
Four Boxes created by tariqc80 - https://repl.it/EW2G/1
.all{
height: 100px;
width: 100px;
border-radius: 20px;
}
#one{
background-color: green;
}
#two{
background-color: yellow;
}
#three{
background-color: blue;
}
#four{
background-color: red;
}
<!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