是否可以在Qualtrics中的CSS中添加自定义字体;即尚未提出的异国情调字体(Arial,ComicSansMS,CourrierNew,Georgia,Lucida ......)?
我已经实现了<link rel="stylesheet'…>
指向外部样式表,引用自定义字体,但它不起作用。内联CSS适用于其他字体,但不适用于非网页安全字体。
答案 0 :(得分:1)
<link href="https://foo.com/fonts.css" rel="stylesheet" type="text/css">
@font-face {
font-family: 'fontOne';
font-style: normal;
font-weight: 400;
src: local('fontOne'), url(http://foo.com/fonts/fontOne.woff) format('woff');
}
&#13;
<p style="font-family:'fontOne';">YourText</p>