谷歌网络字体是可靠的。但是,如果您想使用它们并将它们托管在您自己的服务器上,那么只需转到样式表 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:您在上面使用的字体的名称;
有疑问请追问:)