Web Fonts(Google Fonts)

Web Fonts(Google Fonts)

fonts.google.com

利用方法
  • Noto Sans Japaneseの場合


<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Noto Sans Japaneseの設定</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
body {
  font-family: 'Noto Sans JP', sans-serif;
}