开发者

How many font families are available for Google Font API?

开发者 https://www.devze.com 2023-01-03 22:41 出处:网络
I think the service is great but are these few the only fonts that are available: http://code.google.com/webfonts

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 c开发者_StackOverflow中文版an I see them?


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;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消