前端使用自定义字体

在样式表,@font-face添加自定义属性

body {
}
@font-face {
    font-family: 'Ni7seg';//名称,引用时读取
    src: url('fonts/Ni7seg.ttf') format('truetype');//字体的文件
}

<lable style=" font-family: Ni7seg;color: red;font-size:40px">hello</lable>

猜你喜欢

转载自blog.csdn.net/qq_42335551/article/details/82863114