Created
September 21, 2017 13:45
-
-
Save TheeAndre/8ffb42e8f44838028e1d2ea267c99654 to your computer and use it in GitHub Desktop.
Microsoft Outlook Specific Styling - HTML Email Development
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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