Hi team, do you know how to use Google Fonts in email templates?
Thanks,
Pilar
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @pmedina,
Yes, you can use Google Fonts in email templates, but there are some limitations to consider. Not all email clients support custom fonts, so you will need to ensure that your message still looks good even if the font is not displayed. Here is one way to use Google Fonts in email templates:
<link href=https://fonts.googleapis.com/css?family=YourFontName rel="stylesheet">
Replace "YourFontName" with the actual name of the font you want to use.
<style>
body {
font-family: 'YourFontName', sans-serif;
}
</style>
Remember that email clients have varying levels of support for custom fonts, so it's important to test your emails in multiple clients to ensure they display correctly.
HTML code of email template is accessible with Switch to code editor option in email designer. Add google fronts link and font family according to the need.
Hi @pmedina,
Yes, you can use Google Fonts in email templates, but there are some limitations to consider. Not all email clients support custom fonts, so you will need to ensure that your message still looks good even if the font is not displayed. Here is one way to use Google Fonts in email templates:
<link href=https://fonts.googleapis.com/css?family=YourFontName rel="stylesheet">
Replace "YourFontName" with the actual name of the font you want to use.
<style>
body {
font-family: 'YourFontName', sans-serif;
}
</style>
Remember that email clients have varying levels of support for custom fonts, so it's important to test your emails in multiple clients to ensure they display correctly.
Views
Likes
Replies