React プロジェクトで Google Fonts を使う
2304 ワード
React プロジェクトで Google Fonts を使う
おしゃれなフォントを見つけたので適用方法をメモ書き
1. importコード生成
まずは、Google Fonts
でいい感じのFontを見つけます
見つけたら、+ Select this style
をクリックします
すると、右側にナビゲーションが出てきます
(出てこない場合は画面上のメニュー内のアイコンをクリック)
ここでいったん置いておく
2. React App で読み込む
React側でCSSを適用させます
2-1. style.css を作成
style.cssを作成し、ナビゲーションメニューに出てきた
@import
の部分をコピペします
また、body
タグのfont-family
をGoogleFontsのFont名にします
style.css
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');
body {
font-family: 'Zen Maru Gothic', sans-serif;
}
2-2. cssを読み込む
作成したcssを、フォント適用させたいコンポーネントでimportします
App.tsx
import './style.css';
function App () {
//
}
完了!
Author And Source
この問題について(React プロジェクトで Google Fonts を使う), 我々は、より多くの情報をここで見つけました https://qiita.com/cokemaniaIIDX/items/21916f02d9fe1209f600著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .