|
Hi Jules,
Another way to do it is using @import.
In the HTML/XHTML doc:
<style type="text/css">
@import url("styles.css");
</style>
A good thing is that you can have one css file that imports all your other ones, example of a css file:
@import url("style1.css");
@import url("style2.css");
@import url("style3.css");
That way you can add/remove css-files without having to edit several html/xhtml files.
__________________
Pingdom.com - Web Site Monitoring. 30 day free trial including 20 SMS alerts.
|