top of page

How to create emails with custom fonts in Keap / Infusionsoft by Keap

1. Add a code snippet to your email




















2. Add your font styling and text









This is the code used in this example:


<link rel="stylesheet"

href="https://fonts.googleapis.com/css?family=Tangerine">

<div style="font-family: 'Tangerine', serif; font-size: 48px;">

Styled with code

</div>


In this example Tangerine is used as font, 48px is used as size, and Styled with code is used at the text that will show.

All of these bolded elements will be replaced with your own font choices and text. You can also add any additional formatting, by adding it after the font size like shown in red below:


<link rel="stylesheet"

href="https://fonts.googleapis.com/css?family=Tangerine">

<div style="font-family: 'Tangerine', serif; font-size: 48px; text-shadow: 4px 4px 4px #aaa;">

Styled with code

</div>

Disclaimer:

Note that not all fonts are supported in all email clients. Remember to test.

0 comments

Thank you!

bottom of page