【发布时间】:2020-04-06 18:30:13
【问题描述】:
我已经购买了 html 模板 -> https://themeforest.net/item/bredh-multipurpose-web-hosting-with-whmcs-template/23474111 ,现在我需要添加一些波兰语短语,但问题是一些波兰语字符看起来不同。
使用的字体:“Poppins”
有人知道如何消除这种情况吗?
【问题讨论】:
-
使用支持波兰语字符的字体?
我已经购买了 html 模板 -> https://themeforest.net/item/bredh-multipurpose-web-hosting-with-whmcs-template/23474111 ,现在我需要添加一些波兰语短语,但问题是一些波兰语字符看起来不同。
使用的字体:“Poppins”
有人知道如何消除这种情况吗?
【问题讨论】:
我很好奇,Poppins 是怎么包括在内的?
由 Google Fonts 托管的 Poppins 版本包括对波兰语的支持,因此您可以从那里下载文件并替换它,或使用托管的 Google Fonts 版本。
例如:https://jsfiddle.net/92xu1b8h/
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<style>
h1 {
font-family: "Poppins";
}
.regular {
font-weight: 400;
}
.bold {
font-weight: 700;
}
</style>
<h1>
<span class="regular">Zarejestruj się </span>
<strong class="bold">całkowicie za darmo</strong>
</h1>
【讨论】: