我正在尝试按照说明添加Google字体,它可以在测试文件中使用,但无法在生产站点上加载。

http://www.bleskuborka.ru/services/

标题УБОРКАОФИСА,УБОРКАКВАРТИРЫ等应该使用Roboto Condensed渲染。

<link href="http://fonts.googleapis.com/css?family=Roboto+Condensed&amp;subset=latin,cyrillic" rel="stylesheet" type="text/css">


字体链接到页面。指定了字体系列:

.serv-heading {
font-family: 'Roboto-Condensed', sans-serif;
text-transform: uppercase;
font-size: 30px;
line-height: 1.2em;
}


仍然缺少一些东西。

我最初认为这可能是由于西里尔字母引起的,但我尝试将标题重命名为英语,但没有成功。

请帮忙!

最佳答案

它应该是Roboto Condensed。用空格代替破折号。

.serv-heading {
font-family: 'Roboto Condensed', sans-serif;
text-transform: uppercase;
font-size: 30px;
line-height: 1.2em;
}

10-08 12:41