创建 文件夹 font 存放指定字体库

@font-face引用指定字体库(一)-LMLPHP

在css文件中使用字体库:

html,
body{
font-family: "Microsoft YaHei",Arial,Helvetica,sans-serif;
}
@font-face {
font-family: dinFont;
src: url(font/DIN.ttf);
}

  

使用字体库

.price {
color: #fe730c;
font-family: dinFont;
}

  

05-11 19:29