Created
January 21, 2015 02:11
-
-
Save procload/3589e0ca9551bccb6a37 to your computer and use it in GitHub Desktop.
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
| <!-- This is how it's done for a normal webpage --> | |
| <style> | |
| .my-paragraph { | |
| font-size: 12px; | |
| font-weight: bold; | |
| } | |
| </style> | |
| <p class="my-paragraph"> | |
| This is my styled paragraph. | |
| </p> | |
| <p class="my-paragraph"> | |
| This is my second styled paragraph | |
| </p> | |
| <!-- This is how it needs to be done for an HTML email --> | |
| <p style="font-size: 12px; font-weight: bold;"> | |
| This is my styled paragraph. | |
| </p> | |
| <p style="font-size: 12px; font-weight: bold;"> | |
| This is my second styled paragraph. | |
| </p> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment