2

我经常使用谷歌字体,尤其是这样的字体:-

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

这些应该只用于网站的“部分”还是可以将它们用于整个网站的内容?

body { background-color:#292828; font-family: 'Titillium Web',Arial, Helvetica, sans-serif; }

此外,除了使用 Google 字体或图像之外,还有其他/更好的方法来使用自定义字体吗?

4

2 回答 2

2

如果需要,您可以创建自己的网络字体。

有 webfont 生成器,这里有一个。


关于你关于谷歌网络字体是否可靠的问题?

是的。是的,他们是。可以这样想:谷歌什么时候倒闭了?如果发生这种情况,这可能是您最不应该关心的事情。

于 2013-11-03T13:48:57.073 回答
1

谷歌网络字体是可靠的。但是,如果您想使用它们并将它们托管在您自己的服务器上,那么只需转到样式表 url。在您的情况下,网址是

http://fonts.googleapis.com/css?family=Titillium+Web:200

当您访问它时,您将在其中看到另一个网址,如下所示:

 @font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 200;
  src: local('Titillium WebThin'), local('TitilliumWeb-Thin'), url(http://themes.googleusercontent.com/static/fonts/titilliumweb/v1/anMUvcNT0H1YN4FII8wpr3XqdloEk0Ij5qwGW4qO9RM.woff) format('woff');
}

之后,从中复制网址。在这种情况下,网址是:

http://themes.googleusercontent.com/static/fonts/titilliumweb/v1/anMUvcNT0H1YN4FII8wpr3XqdloEk0Ij5qwGW4qO9RM.woff

当您访问 url 时,字体文件将下载到您的计算机。将该文件上传到您的 Web 服务器并将其包含在您的样式表中,如下所示:

    @font-face {
  font-family: 'any name of the font you wnat';

  src: url(the url to your file on your own server just like u link to  an image);
}

现在包含后,您可以通过调用 font-family:您在上面使用的字体的名称;

有疑问请追问:)

于 2013-11-03T13:54:05.657 回答