如何在模具主题中添加其他Google字体?
我看到三个选择:徽标字体,正文字体和标题字体。我为每种字体分配了不同的Google字体,它们可以完美地工作。我正在尝试添加其他字体。
在CONFIG.JSON上 “ font-custom1”:“ Google-Roboto + Condensed_700”
在CSS上: p {font-family:stencilFontFamily(“ font-custom1”);}
在段落标签上,我可以看到字体家族变成了“ Roboto Condensed”。但是,该字体在浏览器中不是Roboto Condensed。
还有其他需要调整的文件吗?
谢谢!
答案 0 :(得分:3)
将其放入<head>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
或
在.scss
文件中的
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');
我认为有一种模版印刷方法,但是上次尝试时不值得这样做。