答案 0 :(得分:0)
我通过直接上传到GitHub来实现它,这里是代码:
@font-face {
font-family: "Kimberley";
src: url("../Submit/kimberle.ttf") format("truetype");
}
@font-face {
font-family: "LemonMilk";
src: url("../Submit/LemonMilk.ttf") format("truetype");
}
@font-face {
font-family: "rc";
src: url("../Submit/R&C-Demo.otf") format("opentype");
}

答案 1 :(得分:-1)
您似乎忘记使用@font-face
关闭第一个}
。
此外,某些字体格式并不总是在网络上运行。有时您必须使用webfont-converter转换它们。
@font-face {
font-family: "Kimberley";
src: url(http://www.princexml.com/fonts/larabie/kimberle.ttf) format("truetype");
}
@font-face {
font-family: "r_c";
src: url(https://www.dropbox.com/s/p38qag2pb8zwdlq/R%26C-Demo.otf?dl=1) format("otf");
}