我有一个电子邮件html,我想使用字体Poppins在我的电子邮件中显示文本。 但是,它不起作用。 我搜索并找到了一些解决方案,但它仍然没有用。
https://css-tricks.com/kinda-can-use-custom-fonts-html-emails/
https://mailbakery.com/blog/fonts-html-emails-limitations-solutions-industry-standards/
https://litmus.com/blog/the-ultimate-guide-to-web-fonts
感谢阅读。
答案 0 :(得分:0)
然后,添加以下HTML。这包括字体的导入URL并指定哪些HTML元素将使用该字体:
<style type="text/css">
@import url('INSERT_FONT_URL');
p, h1, h2, h3 {
font-family: 'INSERT_FONT_NAME', 'INSERT_A_FALLBACK_FONT';
}
</style>
保存块时,您将看到正在使用的新字体。