gpt4 book ai didi

css - 如何使用不同种类的谷歌字体类型?

转载 作者:行者123 更新时间:2023-11-28 09:07:36 24 4
gpt4 key购买 nike

我想使用不同类型(浅色、黑色、半粗体)的 Google 字体。

这是 Google 字体的链接:https://fonts.googleapis.com/css?family=Exo+2:300,400,600,900

常规字体工作正常,font-family: 'Exo 2'; 但我想知道如何使用浅色和黑色字体。我已经尝试过 Exo 2 Black/Light,但似乎没有效果。

我也阅读了文档,但也没有答案。

最佳答案

您首先必须在文档的头部加载您的字体,然后在您的 CSS 中将字体与正确的 font-weight 结合使用。

PS:您的字体 URL 中有一点错字。

index.html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Website</title>
<link href="https://fonts.googleapis.com/css?family=Exo+2:300,400,600,900" rel="stylesheet">
<link href="path/to/styles.css" rel="stylesheet">
</head>
<body>

</body>
</html>

样式.css

.light {
font-family: 'Exo 2';
font-weight: 300;
}

.normal {
font-family: 'Exo 2';
font-weight: 400;
}

.semi-bold {
font-family: 'Exo 2';
font-weight: 600;
}

.black {
font-family: 'Exo 2';
font-weight: 900;
}

关于css - 如何使用不同种类的谷歌字体类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40224965/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com