Advertisement
Guest User

HTML Email Test (problematic)

a guest
Jul 13th, 2015
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.83 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <HTML>
  3.     <BODY>
  4.         <STYLE>
  5.             #big_wrapper {
  6.                 background-color: #444444;
  7.                 position: fixed;
  8.                 left: 0;
  9.                 right: 0;
  10.                 top: 0;
  11.                 bottom: 0;
  12.             }
  13.             #body {
  14.                 margin: 25px 10px;
  15.                 color: #444444;
  16.             }
  17.             #closing, #greeting {
  18.                 font-size: 24px;
  19.                 font-color: black;
  20.             }
  21.             #date {
  22.                 position: absolute;
  23.                 top: 25px;
  24.                 right: 50px;
  25.             }
  26.             #footer {
  27.                 position: absolute;
  28.                 bottom: 0;
  29.                 left: 0;
  30.                 right: 0;
  31.                 height: 100px;
  32.                 margin: 0 50px;
  33.                 padding: 25px 0;
  34.                 box-sizing: border-box;
  35.                 border-top: 2px solid #181712;
  36.             }
  37.             #name_img {
  38.                 position: relative;
  39.                 top: -25px;
  40.                 height: 100px;
  41.                 float: right;
  42.             }
  43.             #wrapper {
  44.                 font-size: 18px;
  45.                 font-family: verdana;
  46.                 min-width: 500px;
  47.                 max-width: calc(100% - 100px);
  48.                 min-height: 300px;
  49.                 margin: 50px auto;
  50.                 position: relative;
  51.                 box-sizing: border-box;
  52.                 padding: 50px 50px 125px 50px;
  53.                 background-color: #FFFFFF;
  54.                 border-radius: 5px;
  55.                 color: #181712;
  56.             }
  57.         </STYLE>
  58.         <DIV id="big_wrapper">
  59.             <DIV id="wrapper">
  60.                 <DIV id="date">July 12<SUP>th</SUP>, 2015</DIV>
  61.                 <DIV id="greeting">Hello Jon,</DIV>
  62.                 <DIV id="body">
  63.                     <P>This is a sample body paragraph.</P>
  64.                     <P>This is another sample body paragraph.</P>
  65.                     <P>This is yet another sample body paragraph.</P>
  66.                     <P>This is also a sample body paragraph.</P>
  67.                     <P>This is a simple body paragraph.</P>
  68.                     <P>This is a sample body paragraph.</P>
  69.                 </DIV>
  70.                 <DIV id="closing">~jon</DIV>
  71.                 <DIV id="footer">
  72.                     <IMG src="http://gdurl.com/0LTi" id="name_img" moz-do-not-send="true" />
  73.                     <!-- moz-do-not-send courtesy of https://support.mozilla.org/en-US/questions/1030353 -->
  74.                     Jonathan Lam<BR />
  75.                     JBHS Sophomore
  76.                 </DIV>
  77.             </DIV>
  78.         </DIV>
  79.     </BODY>
  80. </HTML>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement