http://www.htmlcenter.com/tutorials/tutorials.cfm/62/CSS/

P { text-transform: uppercase }
P { letter-spacing: 0.1cm }
H1 { word-spacing: 1em }
P { text-shadow: black }
A:link, A:visited, A:active 
{ text-decoration: none|underline|overline|line-through|blink }
P { text-indent: 3em }
P { alignment: center|left|right|justify }

satya - Saturday, December 22, 2007 10:43:13 AM

How to style text

How to style text

satya - Saturday, December 22, 2007 10:44:25 AM

css font-weight

Search for: css font-weight

satya - Saturday, December 22, 2007 10:45:14 AM

example


p
{
font-weight: bold
}

satya - Saturday, December 22, 2007 10:45:45 AM

options


normal
bold
bolder
lighter

satya - Saturday, December 22, 2007 10:46:18 AM

styling text from w3cschools

styling text from w3cschools

satya - Saturday, December 22, 2007 10:47:31 AM

text-decoration


overline
line-through
underline
none

satya - Saturday, December 22, 2007 10:48:45 AM

setting the fonts

setting the fonts

satya - Saturday, December 22, 2007 10:49:54 AM

what I am looking for is font-style


italic
normal
oblique

satya - Saturday, December 22, 2007 10:54:28 AM

An example


div.news-heading-div p
{
margin-bottom:0px;
margin-top:0px;
font-style:italic;
}
div.news-heading-div a
{
margin-bottom:0px;
margin-top:0px;
}
div.news-heading-div a.light
{
color:gray;
}
div.news-heading-div h3
{
margin-bottom:0px;
font-size:12px;
}
div.news-heading-div
{
margin-top:3em;
}