Back to tables
Tables structure is the most popular methodology of building bulletproof e-mail templates. It looks like a blast from the past. So, let's bring the flavor of the past and let's start creating the right structure:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="viewport" content="width=device-width"/> <meta name="format-detection" content="telephone=no"> <title>Untitled Document</title> </head> <body> <style type="text/css"> .class {} /* here will be your code */ </style> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <!-- HERE your content --> </table> </body> </html>
You might ask, "But where is the HTML5 declaration and why aren't...