私のコードを修正するのを助けてください。 私のカスタムフォントは、私が開いているブラウザではレンダリングされていないようです。カスタムWebfontがどのブラウザにもレンダリングされていません
ここに私のCSSコードです。
@font-face{
font-family: 'Guildford';
src: url('../fonts/guildford_pro_titling-webfont.woff') format('woff'),
src: url('../fonts/guildford_pro_titling-webfont.woff2') format('woff2'),
src: url('../fonts/guildford_pro_titling-webfont.eot') format(embedded-opentype),
src: url('../fonts/guildford_pro_titling.otf') format('opentype') !Important;}
body {
font-family: 'Guildford', sans-serif;
background-image: url(../img/staropaquebackground.png);
background-size: cover;
background-attachment: fixed;
background-repeat: no-repeat;
color: #ffffff;}
URLをカンマ区切りにしているときに、すべての行に 'src'が必要ないと確信しています。 – DBS