我正在尝试嵌入字体,我之前尝试过它并且它有效。我的代码只是一个常规的代码,被其他浏览器接受。
@font-face {
font-family: KozGoPr6N;
src: url('../font/KozGoPr6N-Bold.otf') format('opentype');
src: url('../font/KozGoPr6N-Bold.woff') format('woff');
font-weight: normal;
font-style: normal;
}
但是当我试图嵌入ShinGoPro时,它根本不起作用。 这是我之前的代码:
@font-face {
font-family: ShinGoPro-Bold;
src: url('../fonts/ShinGoPro-Bold.otf') format('opentype');
src: url('../fonts/ShinGoPro-bold.woff') format('woff');
font-weight: bold;
font-style: normal;
}
然后我使用fontsquirrel但仍然不起作用。
@font-face {
font-family: 'a-otf_shin_go_pror';
src: url('../fonts/shingopro-regular-webfont.eot');
src: url('../fonts/shingopro-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/shingopro-regular-webfont.woff2') format('woff2'),
url('../fonts/shingopro-regular-webfont.woff') format('woff'),
url('../fonts/shingopro-regular-webfont.ttf') format('truetype'),
url('../fonts/shingopro-regular-webfont.svg#a-otf_shin_go_pror') format('svg');
font-weight: normal;
font-style: normal;
}
不知怎的,我一直在想这个字体是否适用于嵌入,但我确实需要让这个字体适用于我的网页。这个字体是不是真的可以嵌入CSS?我有什么可以做的吗?
修改
我的代码适用于crossbrowser,它根本不起作用。我链接了字体文件,以便人们可以尝试我正在尝试做的事情。我已经尝试使用fontsquirrel,但它根本不起作用。
这种字体是不是真的可以嵌入CSS?我有什么可以做的吗?
^这指的是所有浏览器。