Skip to content

Instantly share code, notes, and snippets.

@TheeAndre
Created September 21, 2017 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheeAndre/8ffb42e8f44838028e1d2ea267c99654 to your computer and use it in GitHub Desktop.
Save TheeAndre/8ffb42e8f44838028e1d2ea267c99654 to your computer and use it in GitHub Desktop.
Microsoft Outlook Specific Styling - HTML Email Development
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Microsoft Outlook Specific Styling - HTML Email Development</title>
<style type="text/css">
a {text-decoration: none;}
</style>
<!--[if mso]>
<style type="text/css" media="all">
*, body, table, td, span { font-family: Arial, Helvetica, sans-serif !important; }
a {text-decoration: underline !important;}
</style>
<![endif]-->
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment