Check out my brand new PSD site XD Content Domain About me, Mel. Home :]

Home > Content > Tutorials

Font Styles

Want your font styles to stand out? Add the below CSS to your Stylesheet and make a statement the next time you use...
<b>bold</b>
<i>italic</i>
<u>underline</u>
<s>strike-out</s>
b {
font-weight: heavy;
color: #7E6165;
font-family: Trebuchet MS;
font-size: 11px;
}
u {
font-weight: normal;
color: #C7A7AB;
border-bottom: 1px dotted #C7A7AB;
font-family: Trebuchet MS;
font-size: 11px;
}
i {
font-weight: normal;
color: #E7ABB3;
font-family: Trebuchet MS;
font-size: 11px;
}
s {
font-weight: normal;
color: #E7ABB3;
font-family: Trebuchet MS;
font-size: 11px;
}