我想在我自己的服务器上使用谷歌的网络字体加载器和我自己的自定义字体。
对于如何按照谷歌自己的文档中的描述配置我自己的网络字体提供程序,我有点困惑:
In addition to the google, typekit, ascender and monotype options,
there is also a custom module that can load a stylesheet
from any web-font provider.
WebFontConfig = {
custom: { families: ['OneFont', 'AnotherFont'],
urls: [ 'http://myotherwebfontprovider.com/stylesheet1.css',
'http://yetanotherwebfontprovider.com/stylesheet2.css' ] }
};
为了使用这个库,我的外部 css 应该包含什么?