Linking To External Style Sheets

It's not hard!

<head>
<title>External Style Sheet</title>
<link href="stylesheet.css" 
rel="stylesheet" type="text/css" />
</head>
<head>
<title>External Style Sheet</title>
<style type="text/css">
@import "stylesheet.css";
</style>
</head>

You can make your links relative [as above] or absolute [http://www.yourdomain.com/stylesheet.css].