Question: How do you link an external style sheet?
Answer:
External style sheets allow you to define your styles in one place and use the same styles on different pages of your Web site. It is easy to link to an external style sheet.
First, save your style sheet to a location on your Web server.
http://www.yourserver.com/styles.css
Then link to it in the <head> of your document.
<head>More Web Design / HTML Q&A
<link rell="stylesheet" href="http://www.yourserver.com/styles.css" type="text/css" />
</head>

