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.