我已将 .ttf 文件从 google 字体下载到我的本地 css 文件夹,但似乎无法正确加载它们。我已经尝试过这些方法:
CSS
@import url('./css/css?family=Cabin+Condensed:400,500,600,700');
@font-face {
font-family: 'Cabin Condensed';
font-style: normal;
font-weight: 700;
src: local('Cabin Condensed') format('truetype');
}
body, html {
font-family: 'Cabin Condensed', sans-serif;
}
HTML
<link href="./css/css?family=Cabin+Condensed:400,500,600" rel="stylesheet">
我没有收到任何错误,但字体也没有显示。奇怪的是,官方文档甚至没有提到本地字体。