您可以使用 @font-face 来实现您的 OTF
字体,例如:
@font-face {
font-family: GraublauWeb;
src: url("path/GraublauWeb.otf") format("opentype");
}
@font-face {
font-family: GraublauWeb;
font-weight: bold;
src: url("path/GraublauWebBold.otf") format("opentype");
}
// 编辑:OTF 现在可以在大多数浏览器中使用,请参阅注释
但是,如果您想支持多种浏览器,我建议您切换到 WOFF
和 TTF
字体类型。 WOFF
类型由每个主要桌面浏览器实现,而 TTF
类型是旧版 Safari、Android 和 iOS 浏览器的后备。如果您的字体是免费字体,您可以使用例如 transfonter 来转换您的字体。
@font-face {
font-family: GraublauWeb;
src: url("path/GraublauWebBold.woff") format("woff"), url("path/GraublauWebBold.ttf") format("truetype");
}
如果您想支持几乎所有仍然存在的浏览器(恕我直言,不再需要),您应该添加更多字体类型,例如:
@font-face {
font-family: GraublauWeb;
src: url("webfont.eot"); /* IE9 Compat Modes */
src: url("webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
url("webfont.woff") format("woff"), /* Modern Browsers */
url("webfont.ttf") format("truetype"), /* Safari, Android, iOS */
url("webfont.svg#svgFontName") format("svg"); /* Legacy iOS */
}
您可以详细了解为什么要实现所有这些类型以及它们的技巧here。要详细了解哪些浏览器支持哪些文件类型,请参阅:
从 Google Font Directory 示例中:
@font-face {
font-family: 'Tangerine';
font-style: normal;
font-weight: normal;
src: local('Tangerine'), url('http://example.com/tangerine.ttf') format('truetype');
}
body {
font-family: 'Tangerine', serif;
font-size: 48px;
}
这适用于.ttf的跨浏览器,我相信它可能适用于.otf。 (Wikipedia 表示 .otf 主要向后兼容 .ttf)如果不是,您可以 convert 将 .otf 转为 .ttf
这里有一些不错的网站:
好的入门读物:http://www.alistapart.com/articles/cssatten
其他信息:http://randsco.com/index.php/2009/07/04/p680