Google Font API 有多少种字体系列可用?

发布于 2024-09-06 08:07:44 字数 183 浏览 4 评论 0原文

我认为这项服务很棒,但只有这几种字体可用:

http://code.google.com /网络字体

或者还有其他的吗?如果有的话我在哪里可以看到它们?

I think the service is great but are these few the only fonts that are available:

http://code.google.com/webfonts

?

Or are there others and if so where can I see them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橙味迷妹 2024-09-13 08:07:44

目前,这些是唯一可用的。不过,您可以使用以下 CSS 托管自己的 opentype 字体。

@font-face {
   font-family: Kabel;
   src: url("ItcKabel-Demi.otf") format("opentype");
}

h2{
    font-family: Kabel, "Lucida Grande", Lucida, Verdana, sans-serif;
}

Currently those are the only ones available. You can host your own opentype font, however, using the following CSS.

@font-face {
   font-family: Kabel;
   src: url("ItcKabel-Demi.otf") format("opentype");
}

h2{
    font-family: Kabel, "Lucida Grande", Lucida, Verdana, sans-serif;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文