Google Fonts の使い方
複数のフォントを利用する
次は,複数のフォントを利用してみよう.たとえば,見出し <h1> タグには「Delta Gothic One」フォントを,本文の <p> タグには「Shippori Mincho」フォントを利用する.それぞれを Google Fonts のページから選択してスタイルシートの読み込みと,<style> タグへの設定を記述すれば良い.
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Google Fonts サンプル</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap" rel="stylesheet">
h1 {
font-family: 'Dela Gothic One', cursive;
}
p {
font-family: 'Shippori Mincho', serif;
}
</style>
</head>
<body>
<h1>Google Font の使い方</h1>
<p>
このサンプルは Google Fonts のスタイルシートを読み込み,<h1> タグに 'Delta Gothic One' を,<p> タグには 'Shippori Mincho' というフォントを設定したものです.
</p>
<p>
サンプルの文章です.Google Fonts を使ってみよう.Googleが提供しているフォントをクラウド経由で使うことで,どのようなOSや端末であっても同じデザインのフォントが利用できるようになります.
</p>
</body>
</html>
上のコードのサンプルはこのようになる.あるいは,複数フォントのスタイルシートをまとめて次のように読み込むことも可能です.
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>Google Fonts サンプル</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Shippori+Mincho&display=swap" rel="stylesheet">
<style>
h1 {
font-family: 'Dela Gothic One', cursive;
}
p {
font-family: 'Shippori Mincho', serif;
}
</style>
</head>
<body>
<h1>Google Fonts の使い方</h1>
<p>
このサンプルは Google Fonts のスタイルシートを読み込み,<h1> タグに 'Delta Gothic One' を,<p> タグには 'Shippori Mincho' というフォントを設定したものです.
</p>
<p>
サンプルの文章です.Google Fonts を使ってみよう.Googleが提供しているフォントをクラウド経由で使うことで,どのようなOSや端末であっても同じデザインのフォントが利用できるようになります.
</p>
</body>
</html>