Skip to content

字体

1、 字体

@font-face {
  font-family: 'MyCustomFont';
  src: url('MyCustomFont.ttf') format('truetype'), /* 对于老版本的iOS */
       url('MyCustomFont.woff') format('woff');  /* 现代浏览器 */
  font-weight: normal;
  font-style: normal;
}
 
.tit {
  font-family: 'MyCustomFont';
}