行间距和字体类型 html 电子邮件签名

Line spacing and font type html E-mail signature

<table style="border-collapse: collapse; width: 100%; height: 252px;">
<tbody>
<tr style="background-color: #f8f8f8;font-size:14px;">
<td style="width: 3%; height: 125px;">&nbsp;</td>
<td style="width: 94%; height: 125px; text-align: center;">
<p style="text-align: center;"><strong>Terry Mueller</strong></p>
<p style="text-align: center;">Private Private</p>
<p style="text-align: center;">Aus 20, 89054 Dettingen, Germany</p>
E-Mail: <a href="mailto:terry.mueller@capcap.com">terry.mueller@capcap.com</a></td>
<td style="width: 3%; height: 125px;">&nbsp;</td>
</tr>
<tr style="height: 2px;">
<td style="width: 3%; height: 2px;">&nbsp;</td>
<td style="width: 94%; height: 2px;">&nbsp;</td>
<td style="width: 3%; height: 2px;">&nbsp;</td>
</tr>
<tr style="background-color: #f8f8f8;font-size:12px;">
<td style="width: 3%; height: 125px;">&nbsp;</td>
<td style="width: 94%; height: 125px; text-align: justify;"><strong>Important Note:</strong> This e-mail and any attachment are confidential and may contain trade secrets and may well also be legally privileged or otherwise protected from disclosure. If you have received it in error, you are on notice of its status. Please notify us immediately by reply e-mail and then delete this e-mail and any attachment from your system. If you are not the intended recipient, please understand that you must not copy this e-mail or any attachment or disclose the contents to any other person. Thank you for your cooperation.</td>
<td style="width: 3%; height: 125px;">&nbsp;</td>
</tr>
</tbody>
</table>

这是我第一次编程html。我希望最终结果如下所示:

所以我基本上必须将行间距设置为零,并且我希望字体类型为 Calibri(正文)。此外,电子邮件 link 不应加下划线,我希望字体颜色为黑色而不是蓝色。在 html 中无法弄清楚如何做到这一点。任何帮助表示赞赏。结果应尽可能兼容。我知道这是一个菜鸟问题:)

感谢任何帮助提前致谢!

您首先必须从 Google 字体导入字体。 Google 字体将为您提供要粘贴到 HTML 头部的行。然后您可以使用内联样式,但将其添加到每个元素。 style="font-family: Calibri; line-height: 5px;".可能有更简单的方法...