|
|
Linking to Ferris Stylesheets
Between the head tags of the Web page, link to the sitepage stylesheets, and you will get special fonts created for the body and links.
The normal font for the body of the text will look like the following.
BODY,td {
font-family: Verdana, Arial, Geneva, sans-serif; color:black; font-size: 10pt; font-weight: normal; text-decoration: none;
}
Example of H1 tag
H1 {
font-family: Verdana, Arial, Geneva, sans-serif; color:maroon; font-size: 13pt; font-weight: bold; text-decoration: none;
}
Example of H2 tag
H2 {
font-family: Verdana, Arial, Geneva, sans-serif; color:black; font-size: 12pt; font-weight: bold; text-decoration: none;
}
Example of H3 tag
H3 {
font-family: Verdana, Arial, Geneva, sans-serif; color:maroon; font-size: 11pt; font-weight: bold; text-decoration: none;
}
Example of H4 tag
H4 {
font-family: Verdana, Arial, Geneva, sans-serif; color:#666633; font-size: 10pt; font-weight: bold; text-decoration: none;
}
Example of H5 tag
H5 {
font-family: Verdana, Arial, Geneva, sans-serif; color:black; font-size: 9pt; font-weight: bold; text-decoration: none;
}
Links will appear like this without doing anything extra.
A {text-decoration: none;}
A {font-family: Verdana, Arial, Geneva, sans-serif;}
A {font-size: 10pt;}
A {font-weight: bold;}
A:link {color: #996600;}
A:visited {color: #990033;}
A:active {color: #FF0000;}
A:hover {color: #990033; text-decoration: underline}
*Use class="sv" if you want to use this color for links.
A.sv {font-family: Verdana, Arial, Geneva, sans-serif; font-size: 10pt; font-weight: bold;}
A.sv:link {color: #C5B197;}
A.sv:visited {color: #C5B197;}
A.sv:active {color: #C5B197;}
A.sv:hover {color: #FFFF00; text-decoration: none}
*Use class="sm" if you want to use this color for links.
A.sm {font-family: Arial,Verdana, Geneva, sans-serif; font-size: 9pt;font-weight:normal;}
A.sm:link {color: #C5B197;}
A.sm:visited {color: #C5B197;}
A.sm:active {color: #C5B197;}
A.sm:hover {color: #FFFF00; text-decoration: underline}
*Use class="tv" if you want to use this color for links.
A.tv {font-family: Verdana, Arial, Geneva, sans-serif; font-size: 9pt; font-weight: light;}
A.tv:link {color: #996600;}
A.tv:visited {color: #990033;}
A.tv:active {color: #FF0000;}
A.tv:hover {color: #990033; text-decoration: underline}
*Use class="tm" if you want to use this color for links.
A.tm {font-family: Arial,Verdana, Geneva, sans-serif; font-size: 9pt;font-weight:normal;}
A.tm:link {color: #FFD700;}
A.tm:visited {color: #FFD700;}
A.tm:active {color: #FFD700;}
A.tm:hover {color: #FFFF00; text-decoration: underline}
|