CSS グーグルフォント

Google フォント

HTMLで標準のフォントを使用したくない場合は、Google Fonts APIを使用して、ページに数百種類の他のフォントを追加できます。

スタイルシートリンクを追加して、選択したフォントファミリーを参照してください:

インスタンス

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
<style>
body {
  font-family: "Sofia";
  font-size: 22px;
}
</style>
</head>
<body>
<h1>Sofia Font</h1>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
</body>
</html>

自分で試してみる