如何部署未安装在其他资源中的字体?

时间:2014-02-27 07:26:10

标签: html css fonts

我使用的是自定义字体,它安装在我的电脑上,但需要让它在网络上运行。请分享可能的方式。

2 个答案:

答案 0 :(得分:1)

您可以尝试下面由google托管的链接:)

https://www.google.com/fonts

您可以使用如下

<link href='http://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'>

并为您的文字设置样式

.myAwesomeLookingTextEveryoneWillLaughAt { font-family: ‘Allura’, cursive; }

有关详细信息,请访问该链接。

答案 1 :(得分:1)

使用字体位置在css中定义字体:

@font-face
{
  font-family: myFont;
  src: url(location/font.ttf);
}

然后将其用作p { font-family:myFont; }