Skip to content

Instantly share code, notes, and snippets.

@sgssandhu
Last active June 12, 2018 10:08
Show Gist options
  • Save sgssandhu/61c7d33289df9a989e2612c48f4dcf6b to your computer and use it in GitHub Desktop.
Save sgssandhu/61c7d33289df9a989e2612c48f4dcf6b to your computer and use it in GitHub Desktop.
Microsoft Logo with CSS
<div class="microsoft-logo">
<div class="square red"></div>
<div class="square green"></div>
<div class="square blue"></div>
<div class="square yellow"></div>
</div>
<style>
.microsoft-logo{
width:440px;
margin:20px auto;
}
.square {
width: 200px;
height: 200px;
margin:0 20px 20px 0;
float:left;
}
.square.red{background-color:#F35325;}
.square.green{background-color:#81BC06;}
.square.blue{background-color:#05A6F0;}
.square.yellow{background-color:#FFBA08;}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment