Archive of the former Yahoo!Groups mailing list: MOTM

previous by date index next by date
previous in topic topic list next in topic

Subject: RE: [motm] Re: Visit my new MOTM web site (updated!)

From: "Tkacs, Ken" <ken.tkacs@...>
Date: 2000-10-25

The best way to control how text and links look and work is to use Cascading
Style Sheets, such as the example code below, placed in the <Head> of an
HTML page:


<STYLE TYPE="text/css">

.BodyText {font-family: Georgia, Times, Serif;
font-size: 10pt;
text-decoration: none;
}

.BodyText A {color: #0000CC;}

.BodyText A:hover {color: #008800;}

</STYLE>


Then you class all your body text as "BodyText" and the rest is magic.

Okay, I'll be quiet now.