カスタムフォントの使い方のメモ
手順
-
app/assets/fonts 以下に fontファイルを置く
-
scss で @font-face を指定
@font-face {
font-family: 'SkipStd';
src: font-url('FOT-SkipStd-D.otf') format('truetype');
font-weight: normal;
font-style: normal;
}
これで使えるようになります
body {
font-family: 'SkipStd';
}
反映されなかったら、サーバを立ち上げ直してみてください
参考リンク
plapier さんの説明がわかりやすかったです