适用于Mac和Windows的漂亮CSS字体

时间:2012-04-21 20:50:31

标签: css fonts

我看到很多网站都显示不是图片的优秀字体。例如:The Firebug siteHappy Cog。似乎有很多CSS'技巧',一些JavaScript以及各种网页设计师用来完成工作的其他任何技巧(我不是建议上述任何一个网站都这样做)。

我的问题是,在CSS /字体实践方面可以接受什么?是否仍然应该使用一组核心常用字体?如果没有,那么显示漂亮字体的可接受/可靠做法是什么,特别是对于Mac / Windows一致性?

2 个答案:

答案 0 :(得分:5)

您现在可以嵌入字体。这是一个很好的起点:http://www.google.com/webfonts

答案 1 :(得分:0)

如果您有想要使用的字体,可以使用生成器,它会生成您只需要包含在您的网站中的文件

http://www.fontsquirrel.com/fontface/generator

只需在样式表中包含以下内容:

@font-face {
    font-family: 'ArchitectsDaughterRegular';
    src: url('fonts/ArchitectsDaughter-webfont.eot');
    src: url('fonts/ArchitectsDaughter-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/ArchitectsDaughter-webfont.woff') format('woff'),
         url('fonts/ArchitectsDaughter-webfont.ttf') format('truetype'),
         url('fonts/ArchitectsDaughter-webfont.svg#ArchitectsDaughterRegular') format('svg');
     font-weight: normal;
     font-style: normal;
}

只需将网址指向实际拥有该字体的位置即可。还有很多预制字体可供使用。