西里尔 Google 字体 'Montserrat' 无法加载
Cyrillic Google Font 'Montserrat' does not load
我正在尝试加载 google 字体 Montserrat。
这适用于拉丁文字,但每当我使用西里尔文字时似乎都会退缩。
我错过了什么?
body {
font-family: 'Montserrat', serif;
font-weight: 400;
}
h1 {
font-family: 'Montserrat Alternates', serif;
font-weight: 700;
}
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Montserrat+Alternates:700|Montserrat:400,400i,700&subset=cyrillic" rel="stylesheet">
</head>
<body>
<h1> Headline </h1>
<p>Lorem <i>ipsum</i> dolor sit amet <b>consectetur</b>, adipisicing elit. Saepe, qui.
<p>
<h1> Хеадлине </h1>
<p>Лорем <i>ипсум</i> долор сит амет <b>цонсецтетур</b>, адиписицинг елит. Саепе, яуи.</p>
</body>
</html>
浏览器正在加载此字体的本地版本,该版本不包含西里尔子集。
我正在尝试加载 google 字体 Montserrat。 这适用于拉丁文字,但每当我使用西里尔文字时似乎都会退缩。
我错过了什么?
body {
font-family: 'Montserrat', serif;
font-weight: 400;
}
h1 {
font-family: 'Montserrat Alternates', serif;
font-weight: 700;
}
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Montserrat+Alternates:700|Montserrat:400,400i,700&subset=cyrillic" rel="stylesheet">
</head>
<body>
<h1> Headline </h1>
<p>Lorem <i>ipsum</i> dolor sit amet <b>consectetur</b>, adipisicing elit. Saepe, qui.
<p>
<h1> Хеадлине </h1>
<p>Лорем <i>ипсум</i> долор сит амет <b>цонсецтетур</b>, адиписицинг елит. Саепе, яуи.</p>
</body>
</html>
浏览器正在加载此字体的本地版本,该版本不包含西里尔子集。