我尝试在我的网站中使用Museo字体。但我不知道如何在网站上使用它。
如果是'Roboto'之类的任何谷歌字体,那么我可以使用以下代码:
font-family: 'Roboto', sans-serif;
现在如何使用博物馆字体?
我可以只使用'Museo Slap'或者需要使用'Museo Slap',sans-serif;
答案 0 :(得分:1)
如果您愿意,可以省略sans-serif
,但如果“Museo Slap”不可用,我建议保留它,因为它提供后备支持。
对于它的价值,我认为Museo Slap实际上被称为 Museo Slab 。
答案 1 :(得分:0)
这个过程可以用来在php文件中使用文本而不必把它放在css中
<style type="text/css">
@font-face {
font-family: "My Custom Font";
src: url(http://www.example.org/mycustomfont.ttf) format("truetype");
}
p.customfont {
font-family: "My Custom Font", Verdana, Tahoma;
}
</style>
<p class="customfont">Hello world!</p>
这仅适用于TFF或WOFF格式的字体。用服务器上字体的url替换src。替换&#34;我的自定义字体&#34;和&#34; customfont&#34;用你想要的字体名称。
或者你也可以使用代码
将字体添加到style.css.font-face {
font-family: "My Custom Font";
src: url(http://www.example.org/mycustomfont.ttf) format("truetype");
}