| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 
 | @font-face {font-family: '自定义字体名称';
 src: url('../font/字体名称.eot');
 src:url('../font/字体名称.woff') format('woff'),
 url('../font/字体名称.ttf') format('truetype'),
 url('../font/字体名称.svg') format('svg');
 }
 
 h1 {
 font-size:36px;
 color:#ccc;
 font-family: "自定义字体名称";
 }
 
 |