Is it possible to put custom font into email content template or its only possible with html template?
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
@Michael_Soprano custom font can be incorporated in both content and HTML template.
@Michael_Soprano custom font can be incorporated in both content and HTML template.
Hey Anuhya,
Can you please point to any documentation around it.
Views
Replies
Total Likes
Add the custom font as a link and use that in the style tag. Check out below example.
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
<style>
body {
font-family: "Sofia", sans-serif;
}
</style>