Google Fonts (思源黑體、思源宋體)

by Hsiangming Lo

Google Fonts 的思源黑體和思源宋體的加入語法。

思源黑體

<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">

<style>
  @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
  p {font-family: 'Noto Sans TC', sans-serif;}
</style>

思源宋體

<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap" rel="stylesheet">

<style>
  @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');
  p {font-family: 'Noto Serif TC', serif;}
</style>