Skip to content

Instantly share code, notes, and snippets.

@procload
Created January 21, 2015 02:11
Show Gist options
  • Select an option

  • Save procload/3589e0ca9551bccb6a37 to your computer and use it in GitHub Desktop.

Select an option

Save procload/3589e0ca9551bccb6a37 to your computer and use it in GitHub Desktop.
<!-- 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