Last active
September 13, 2016 15:24
-
-
Save BAGELreflex/0aa34418ceff47ff43b292337e5d195b 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
<!DOCTYPE html> | |
<html> | |
<!-- Body tag by default has padding; we remove it here for better compatability --> | |
<body style="margin: 0; padding: 0;"> | |
<!-- Remove cellpadding and spacing. Add 25px top/bottom margin, and make left/right be auto to center the table --> | |
<table cellspacing="0" cellpadding="0" style="margin: 25px auto;"> | |
<tbody> | |
<tr> | |
<!-- The align attribute makes this work in older clients; the style text align works in newer clients --> | |
<td align="center" style="text-align: center;"> | |
<!-- Images must have display: block to remove their native padding --> | |
<img src="http://i.imgur.com/bNE5o3f.png" style="display: block;"> | |
</td> | |
</tr> | |
<tr> | |
<td align="center" style="text-align: center;"> | |
<img src="http://i.imgur.com/xO6e0RQ.png" style="display: block;"> | |
</td> | |
</tr> | |
<tr> | |
<td align="center" style="text-align: center;"> | |
<img src="http://i.imgur.com/pjBd6TE.png" style="display: block;"> | |
</td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment