代码示例:(标识:css3_font-face_rule_bold)
<!DOCTYPE html>
<html>
<head>
<style> 
@font-face {
   font-family: myFirstFont;
   src: url(sansation_light.woff);
}

@font-face {
   font-family: myFirstFont;
   src: url(sansation_bold.woff);
   font-weight: bold;
}

* {
   font-family: myFirstFont;
}
</style>
</head>
<body>

<h1>@font-face 规则</h1>

<div>
通过 CSS,网站可以使用<b>预选的 "web-safe" 字体以外的其他字体</b>。
</div>

<p><b>注释:</b>Internet Explorer 8 以及更早的版本不支持 @font-face 规则。</p>

</body>
</html>
运行结果: