@font-face
Expression Studio 3.0
Sets a font to embed in the HTML document.
The following example embeds a font in an HTML document by pointing to the font source, which is located at another site:
<html>
<head><style>
@font-face {
font-family:comic;
src:url(http://valid_url/some_font_file.eot);
}
</style>
</head>
<body>
<p style="font-family:comic;font-size:18pt">
This paragraph uses the font-face rule defined
in the preceding style element. The rule embeds
an OpenType file for the Comic Sans font.
</p>
</body>
</html>
This rule is defined in Cascading Style Sheets (CSS), Level 2 (CSS2).