How to Apply Style Sheet Rules |
In order for the style sheets to influence the presentation, the HTML documents need to be linked with the style sheets. There are several ways to do this. We advise you to use external style sheets. To apply style sheet rules:
The import instructions must be at the beginning of the master CSS document. For example: @import "WRClasses.css"; @import "WebDesigner.css"; @import "CompanyStyle.css";
<LINK REL=STYLESHEET TYPE="text/css" HREF="css/CustStyle.css"> |