Currently working on an email template and looking to match the font with my website.
Is there a method to ensure my site's font carries over into the email template?
Provided below is the HTML code:
<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: 'XSANS';
src: url('http://new.bama.ir/content/font/XTX-FNT-XEROSANS-REGULAR.woff') format('woff');
font-weight: normal;
font-style: normal;
}
.ab{
font-family: "XSANS";
direction: rtl;
font-size: 16px;
font-weight: normal;
line-height: 22px;
text-align: justify;
color:#919191
}
</style>
</head>
<body>
<div class="ab">این برای تست . این برای تست . این برای تست .
</div>
</body>
</html>
The issue arises when the font in the email template differs from that of the website. When viewing the email, the font appears differently than intended. Seeking assistance to maintain consistency across both platforms.
Your help in resolving this matter would be greatly appreciated.
Thank you in advance.