我有Inter字体。我从Google Fonts得到它。但它不能显示。似乎箭头看不到字体。你可以看到它。
而不是Google Inter Font页面上的相同箭头
的
css:
<head>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
body{
font-family: 'Inter', sans-serif;
}
</style>
</head>
字符串
html:
<div> ↗</div>
<div >Almost before we knew it, we had left the ground. ↗</div>
型
怎么了?
3条答案
按热度按时间insrf1ej1#
在https://fonts.googleapis.com/css2上使用CSS API使用的字体比完整TTF提供的字体稍轻。
可能的解决办法:
1.您可以使用
text=
参数,以包含文档中详细说明的所有您关心的字符字符串
h43kikqp2#
如果你想使用自定义字体,你应该将这些字体复制到你项目文件夹中,然后使用CSS代码将它们添加到你的文档中
字符串
将此src替换为您在项目中复制的字体地址
gcxthw6b3#
就用这个代码:它对我有用
字符串