|
|
|
 Affordable Website Templates
Tip#6
Sample CSS Style Sheet
It provides a white background, black text, violet color links,purple visted links, hoover is pink and underlined - You can change the colors by replacing the color codes.
Create a stylesheet by cuttingand pasting code into a blank page, save as stylesheet.css. Upload to your server. Place this code in header of your html page
Body {
Font-family : sans-serif;
Font-style : normal;
Font-variant : normal;
Font-weight : normal;
Font-size : medium;
Font : Helvetica;
Color : black;
Background-color : white;
Word-spacing : normal;
Letter-spacing : normal;
Text-decoration : none;
}
A {
Color : #cc9999;
text-decoration: none;
}
A:visited {
Color : #996666;
text-decoration: none;
}
A:hover {
Color : #ffcccc;
text-decoration: underline;
}
Copyright ©2005 webmastersprofitpak.net. All rights reserved.
|