このコードでクロスブラウザ互換性を得ることができますが、問題は、ここで同じフォントのファイルタイプをたくさん追加する必要があることです。それを回避し、クロスブラウザ互換性を得ることができますか?
@font-face {
font-family: 'Name';
src: url('location.eot');
src: url('location.eot#iefix') format('embedded-opentype'),
url('location.woff') format('woff'),
url('location.ttf') format('truetype'),
url('location.svg#Name') format('svg');
font-weight: normal;
font-style: normal;
}