   CSS - another
cool sounding acronym
aking use of a
style sheet will make your job easier and your pages more
flexible. Style Sheets are simply text files
that are referenced in HTML. The browser sees a Style
Sheet is to be used and gets its settings for the page
and fonts from that Style Sheet.
You can create style sheets easily in Notepad, but you
need to add the code to call the Style Sheet into your
page manually as FrontPage Express doesn't offer a
feature to use them. It's easy though.
Here's the sample code from the Style Sheet for this
page. You can find the actual file, Style.css, in the Source files section.
BODY {
font-family : Verdana;
font-size : 9pt;
color : black;
margin-left : 0pt;
margin-right : 0pt;
margin-top : 0pt;
margin-bottom : 0pt
}
TD {
font-family : Verdana;
font-size : 9pt;
}
P {
font-family: Verdana;
font-size : 9pt;
}
A:hover {
Color : red;
}
|