发送marketo电子邮件时,为什么字体Awesome不起作用

时间:2014-10-02 16:02:00

标签: html css fonts font-awesome marketo

我正在使用Marketo发送电子邮件。在这些电子邮件中,我使用字体很棒来创建社交媒体图标。但是,它在发送时不会出现在电子邮件中。

要导入我使用以下内容的字体:

<link href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.3/css/font-awesome.min.css" rel="stylesheet">

1 个答案:

答案 0 :(得分:0)

最佳做法是避免使用外部样式表,因为大多数电子邮件客户端都会阻止它们。也就是说,你走在正确的轨道上。以下是如何执行此操作:

  1. 加载外部样式表。

    <link href='http://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
    
  2. 在CSS中引用font-family。

    h1 { font-family: 'Lato', sans-serif; font-weight: 400; }