Hi there! I’m trying to add a custom fonts to my email template following these instructions and establish my fall back fonts.
My desired brand font ad fall back fonts:
- Desired branded font: Poppins
- Fall back font 1: Open Sans
- Fall back font 2: New York
- Fall back font 3: san-serif
My questions:
- Is there a limit to the number of fall back fonts you can have? Is 3 ok?
- What code should I use to best execute my desired brand font and fall back fonts?
Open Sans is known to be a good default web font but it is not available in Klayvio. Do I need to add the font URL for Opens Sans or can I just list the font?
Code - this is the code I’ve drafted for reference:
<style type="text/css">
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap’);
p, h1, h2, h3, h4, ol, li, ul { font-family: ‘Poppins’, Open Sans, New York,
sans-serif; }
</style>
Thanks in advance for your help!
Best,
Diana