Learn XHTML and CSS in the following pages!

ROOT HOME
DESIGN HOME

XHTML Tutorial
XHTML Syntax
XHTML DTD
XHTML HowTo

CSS Tutorial
CSS Syntax
External CSS
Internal CSS
Inline CSS

Tools
Color Chart
Web Tools

Validation
Validate your site
Check our XHTML
Check our CSS

There are two ways to embed an external style sheet

One way is to use the <link> tag:
<link rel='stylesheet' type='text/css' href='yourfile.css' />
*****
The other way is to use @import:
<style type='text/css'>
@import url("yourfile.css");
</style>

You can use either one you want, but I prefer to use @import.


Updated: February 22 2007 04:19:47 PM. EDT (GMT -4)
All content, unless otherwise stated, Copyright © 2005 - 2010 Eric Schultheiss. All Rights Reserved.