下载自己喜欢的字体,字体格式为.ttf
将下载好的字体转换成.eot、 .woff、 .woff2三种格式,文件名可以是任意英文,没有特殊要求,可以根据自己的喜好命名(不要设置为中文就可以了)。
将转换好的.eot、 .woff、 .woff2、.ttf、.svg、.otf格式字体上传到自己网站任何位置,只要和后面的代码路径一致就可以了。
@font-face {
font-family: "ziti";
src: url("https://你的文件路径/ziti.woff2") format("woff2"),
url("https://你的文件路径/ziti.woff") format("woff"),
url("https://你的文件路径/ziti.ttf") format("truetype"),
url("https://你的文件路径/ziti.eot") format("embedded-opentype"),
url("https://你的文件路径/ziti.svg") format("svg"),
url("https://你的文件路径/ziti.otf") format("opentype");
font-weight: normal;
font-style: normal;
font-display: swap;
}
body{
font-family: 'ziti'
}
;