How to create HTML mailer
There are two fundamental concepts to keep in mind when creating HTML email:
- Use HTML tables to control the design layout and some presentation. You may be used to using pure CSS layouts for your web pages.
- Use inline CSS to control other presentation elements within your email, such as background colors and fonts.
You remember a few things at the time of creating HTML email
- CSS style declarations appear below the
bodytag, not between theheadtags. - No CSS shorthand is used: instead of using the abbreviated style rule
font: 12px/16px Arial, Helvetica, you should instead break this shorthand into its individual properties:font-family,font-size, andline-height. spans anddivs are used sparingly to achieve specific effects, while HTML tables do the bulk of the layout work.- CSS style declarations are very basic, and do not make use of any CSS files.
https://www.facebook.com/Web-World-1571201346516896/?fref=ts
ReplyDeleteThis page is related to WEB WORLD
ReplyDelete