Linking HTML to CSS

So how do you marry an external CSS file to an HTML file? Couldn't be easier...

Anywhere between the <HEAD> and </HEAD> section at the top of each HTML file, type:

<link rel="stylesheet" href="URL" type="text/css">

The only part of the line that varies is the URL, which is the file name for the CSS file.