有两种方法可以做到:
我有一些文件,如:CRC35.otf
如何做到这一点?
答案 0 :(得分:1)
使用.otf文件并使用此工具https://transfonter.org/转换为其他字体格式,然后将它们全部嵌入CSS文件中
@font-face {
font-family: 'CRC35';
src: url('CRC35.eot');
src: url('CRC35.eot?#iefix') format('embedded-opentype'),
url('CRC35.woff') format('woff'),
url('CRC35.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
答案 1 :(得分:1)
最好的方法是使用谷歌字体 http://fonts.google.com 你可以像这样导入它的meta标签(使用例如Noto Sans字体)
`<link href="https://fonts.googleapis.com/css?family=Noto+Sans" rel="stylesheet">`
或直接发给css
@import url('https://fonts.googleapis.com/css?family=Noto+Sans');
并将其用作
{
font-family: 'Noto Sans', sans-serif;
}
:)