Google Font API
参考
Google Fonts
https://fonts.google.com/?subset=japanese
Google Fonts APIの入門 | Google Fonts和訳 Web・開発
標準ではないフォントはAPIからフォントのデータを読み取る必要がある。
Scrapboxでいえば、のらてつさんのやり方を見たところ、Google Font APIから@importすればできるようである。
URL:
https://fonts.googleapis.com/css?family=Font+Name|Font+Name+2
半角スペースは+を入力すればよい
複数のフォントファミリーをリクエストするには|でつなぐ
一般的に、HTMLで設定するときには以下のような書き方をする
code:html
<head>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Tangerine">
</head>