关于引用本地字体

@font-face{
  font-family: '字体name';
  src: url('../font/本地字体.eot');
  src: url('../font/本地字体.eot?#iefix') format('embedded-opentype'), 
       url('../font/本地字体.ttf') format('truetype');
}
 
body {
  font-family: '字体name';
}
原文地址:https://www.cnblogs.com/HePandeFeng/p/12868038.html