APIの最近のブログ記事
Googleから「Google Font API」なるものが登場。
今までウェブサイトでは限られたフォントしか使用できませんでしたが
このAPIを使えば簡単にいろんなフォントをウェブサイトに表示可能になるらしい。
下記のように書くだけで簡単に実装できる。
<link href="http://fonts.googleapis.com/css?family=Tangerine" rel="stylesheet" type="text/css" >
<style>
body {
font-family: "Tangerine", serif;
font-size: 17pt;
font-style: normal;
font-weight: 400;
text-shadow: none;
text-decoration: none;
text-transform: none;
letter-spacing: 0;
word-spacing: 0;
line-height: 1;
}
</style>

