Actually, there is no difference between an embedded style sheet and a linked style sheet. They are exactly the same thing, just different wording to describe the same process. To embed a style sheet into a document, you use the <link /> tag within the <head> tag of an HTML document. An example is:
<link rel="stylesheet" href="style.css" type="text/css" />