@font-face in Gmail Android
UnsupportedGmail Mobile · mobile
Fix & Workaround
Always include a web-safe font stack as fallback (e.g., Arial, Helvetica, sans-serif).
Before
@font-face {
font-family: 'CustomFont';
src: url('custom.woff2') format('woff2');
}
h1 { font-family: 'CustomFont'; }After
/* Keep @font-face for clients that support it */
@font-face {
font-family: 'CustomFont';
src: url('custom.woff2') format('woff2');
}
h1 {
font-family: 'CustomFont', Arial, Helvetica, sans-serif;
}Add web-safe font fallback stack
Other Clients
| Client | Support |
|---|---|
| Gmail | Unsupported |
| Gmail iOS | Unsupported |
| Outlook 365 | Unsupported |
| Outlook (New) | Partial |
| Outlook Classic | Unsupported |
| Outlook iOS | Unsupported |
| Outlook Android | Unsupported |
| Apple Mail | Supported |
| Apple Mail iOS | Supported |
| Yahoo Mail | Unsupported |
| Samsung Mail | Supported |
| Thunderbird | Supported |
| HEY Mail | Supported |
| Superhuman | Supported |
Related Features
Test your email across all 15 clients
Preview rendering, catch CSS issues, and get actionable fixes — free.
Try Emailens Free