7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

React にGoogle Web Fontsを追加する方法

Posted at

概要

一番最初に読み込まれるCSSファイルに@import文を書く

手順

  1. create-react-appなら、index.cssを開く
  2. Google Web Fontsの@importをコピペ
@import url('https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz&display=swap');
  1. cssファイルでfont-familyを指定
font-family: 'Yanone Kaffeesatz', sans-serif;

注意

  • 一番最初に読み込まれるファイルにしないと、フォントがロードされない
  • 開発端末以外でページを開くとフォントがロードされてないこともあるので、確認が必要
7
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?