前端学习之----引用字体文件

1、先在css里面为引用的字体取名

@font-face {
    font-family: 'thin';
    src: url('../font/thin.ttf');
}

2、使用到需要的地方

.link_box {
    font-family: thin;
}
原文地址:https://www.cnblogs.com/zhaoyingzhen/p/10634988.html