我的网站上有一堆机器人字体。我想使用谷歌字体 CDN 而不是仅仅为了性能问题。当我将 google CDN url 放入 url("@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100&display=swap'") 时,我遇到了一个问题不行。例如,下面的 CSS 使用本地机器人字体,我应该用谷歌字体 CDN 替换它。我应该怎么做才能解决这个问题?
@font-face {
font-family: roboto regular;
font-display: auto;
font-style: normal;
font-weight: 400;
src: local('Roboto Regular'), url(../webfonts/Roboto-Regular.woff) format('woff');
}
@font-face {
font-family: roboto medium;
font-display: auto;
font-style: normal;
font-weight: 500;
src: local('Roboto Medium'), url(../webfonts/Roboto-Medium.woff) format('woff');
}
@font-face {
font-family: roboto bold;
font-display: auto;
font-style: normal;
font-weight: 600;
src: local('Roboto Bold'), url(../webfonts/Roboto-Bold.woff) format('woff');
}
@font-face {
font-family: roboto slab regular;
font-style: normal;
font-weight: 400;
src: local('Roboto Slab Regular'), url(../webfonts/RobotoSlab-Regular.woff) format('woff');
}
- 机器人常规 400
- 机器人中型 500
- 机器人粗体 600
- 机器人平板常规 400