I am trying to figure out a way to specify a default font for my outgoing HTML emails. The reason for this is because outlook's default font is in Times New Roman, and I would like it to be in Arial instead.
I tried doing <body style="font-family: Arial, Helvetica, sans-serif;">
but a < a href> tag within a < table> in my email, for example, still shows up in Times in Outlook.
I also tried doing a global css declaration, like
<style>
body {font-family:Arial, Helvetica, sans-serif; }
</style>
and this didn't do it as well.
Is there a way to specify a default font for my HTML, without having to hardcode the font face in each link?
This will work obviously in outlook < a href=# style="font-family: Arial, Helvetica, sans-serif;">
<body>tag in an HTML email as most email clients strip out that tag - you won't get any results that way. Instead try using a styled<div>– Matt Jul 27 '12 at 17:20<a style="font-family:'Arial'">work? – Mr Lister Jul 27 '12 at 17:23<a>works, then write this in your global css:body, body * {font-family:'Arial' !important;}– Mr Lister Jul 27 '12 at 17:25