13
8

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.

数字だけフォントを変える(Google Fonts)

Posted at

数字だけフォントを変えたい時、Google Fontsだと簡単にできます。

Google Fonts
https://fonts.google.com/

普通にフォントを指定している時

index.html
<body>
    <h1>October 2018</h1>
</body>

今回、Nunito フォントを使用しています

style.css
@import url('https://fonts.googleapis.com/css?family=Nunito');
html {
  font-family: 'Nunito', sans-serif;
}

結果

すべてに Nunito フォントがあたります。
スクリーンショット 2018-10-26 23.40.48.png

数字だけ指定したい時

text=0123456789を追加します

style.css
@import url('https://fonts.googleapis.com/css?family=Nunito&text=0123456789');
html {
  font-family: 'Nunito', sans-serif;
}

結果

数字のみ Nunito のフォントが当たります
スクリーンショット 2018-10-26 23.48.23.png

Google Fonts の使い方

こちらのサイトがとてもわかりやすいです。
https://saruwakakun.com/html-css/basic/google-fonts

13
8
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
13
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?