等宽字体推荐
等宽字体推荐
123456789.999999999
123456789.999999999
123456789.999999999
123456789.999999999
/* 引用字体并给字体命名 */
@font-face {
font-family: aequilate; /* 稍后直接使用这个名字,作为 font-family即可 */
src: url('./assets/aequilate-font.ttf'); /* IE9+ */
font-weight: 100;
}
/* 引用字体并给字体命名 */
@font-face {
font-family: aequilate2; /* 稍后直接使用这个名字,作为 font-family即可 */
src: url('./assets/aequilate-font-2.woff2'); /* IE9+ */
font-weight: 100;
}
.font-aequilate {
font-family: aequilate;
}
.font-aequilate2 {
font-family: aequilate2;
}
.font-monospace { /* 系统提供的等宽字体 */
font-family: monospace;
}Last updated