Webサイトでより高速なフォントをロードするには、いくつかの解決策または提案が必要です。
何かのようなもの
@font-face {
font-family: 'myfont';
src: url('myfont.eot');
src: url('myfont.eot?#iefix') format('embedded-opentype'),
url('myfont.woff') format('woff'),
url('myfont.ttf') format('truetype'),
url('myfont.svg#nexa_heavyregular') format('svg');
font-weight: normal;
font-style: normal;
}
HTMLがfont-faceurlをロードまたはダウンロードしている間にfont-faceを変更するのに少し時間がかかりますが、それをより速くロードするためのアイデアはありますか?