目前,我正在按照以下示例进行操作,对吗?有更好的方法吗?
/*Font Face*/
@font-face { font-family: Comfortaa; src: url('Comfortaa.ttf') }
@font-face { font-family: Comfortaa; font-weight: bold; src: url('ComfortaaBOLD.ttf') }
/*Fonts*/h1, h2, h3, h4, h5, h6, p, pre, a, ol, li, span, label, blockquote, figcaption, abbr, td, input, textarea {
font-family: 'Comfortaa', arial, sans-serif;
font-size: 1em;
line-height: 150%;
color: #4A4A4A;
}
2) 以下哪种方法应用 BOLD 字体是正确的:
一个)
strong {
font-weight: bold;
}
二)
strong {
font-family: Comfortaa; font-weight: bold; src: url('ComfortaaBOLD.ttf')
}