6

除了 google 之外,是否有任何网站提供可以直接链接到您的 css 文件中的库?

就像 google-webfonts @font-face 一样,它们是托管的,并且没有适合您的本地文件。

{
    font-family: 'Yanone Kaffeesatz';
    font-style: normal;
    font-weight: 400;
    src: url('http://themes.googleusercontent.com/font?kit=YDAoL...JF4')
         format('truetype');
}
4

5 回答 5

2

有 Typekit ( http://typekit.com/ ),但它不是免费的。

于 2010-11-21T09:48:23.107 回答
1

如果您使用日文字体,M+ 字体允许热链接,并在其网站上提供有关如何进行热链接的说明:

http://mplus-fonts.sourceforge.jp/webfonts/index-en.html

许可证是开放且免费的:

授予无限许可以商业和非商业方式使用、复制和分发,无论是否修改

您没有指定特定的语言 - 这些字体的字体集中也有英文字符。

于 2010-11-29T03:36:01.110 回答
0

我用这个

http://www.fontsquirrel.com/fontface

于 2010-11-21T11:57:11.280 回答
0

实际上有相当多的服务,比如 Typekit,只是不太为人所知。不过,和 Typekit 一样,几乎都是付费服务,需要按月付费才能使用。

Smashing Magazine 最近发布了这些服务的列表,您可以在此处查看:Review of Popular Web Font Embedding Services

于 2010-11-21T12:58:38.570 回答
0

谷歌网络字体怎么样?

这是有关如何应用它的教程。

这是一个例子。

<html>
  <head>
    <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine">
    <style>
      body {
        font-family: 'Tangerine', serif;
        font-size: 48px;
      }
    </style>
  </head>
  <body>
    <div>Making the Web Beautiful!</div>
  </body>
</html>

于 2015-07-31T04:55:22.847 回答