CSS code for these buttons is similar to those
above.
HTML code for WP(square) button is given below:
<div class="button3">
<div class="b3left">wp</div>
<div class="b3right">WordPress</div>
</div>
CSS code used to make the button is given below:
.button3 { border: 1px solid rgb(153, 0, 0);
text-align: center;
font-family: Times New Roman,Times,serif;
width: 4.2em;
}/*This declaration defines the outside border.*/
.b3left { text-transform: uppercase;
margin-left: 2px;
padding-left: 2px;
margin-right: 2px;
padding-right: 2px;
color: rgb(153, 0, 0);
font-family: Times New Roman,Times,serif;
font-size: 240%;
}/*This declaration defines the top part
of the button.*/
.b3right { margin-left: 2px;
padding-left: 2px;
margin-right: 2px;
padding-right: 2px;
background-color: rgb(153, 0, 0);
color: rgb(255, 255, 255);
margin-bottom: 2px;
font-family: Times New Roman,Times,serif;
font-size: small;
}/*This declaration defines the bottom part
of the button.*/