0

我已经购买了 html 模板 -> https://themeforest.net/item/bredh-multipurpose-web-hosting-with-whmcs-template/23474111,现在我需要添加一些波兰语,但问题是一些波兰语字符看起来不同。

使用字体:“Poppins”

在此处输入图像描述

在此处输入图像描述

有人知道如何消除这个吗?

4

1 回答 1

0

我很好奇,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>

在此处输入图像描述

于 2020-04-07T22:18:04.133 回答