Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 15th, 2012  |  syntax: None  |  size: 1.67 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4.     <style type="text/css">
  5.         body
  6.         {
  7.             font-family: Arial;
  8.             color: black;
  9.             background-color: white;
  10.         }
  11.         span.benefit
  12.         {
  13.             font-family: Arial;
  14.             font-weight: bold;
  15.             font-size: 13pt;
  16.             vertical-align: top;
  17.         }
  18.         span.footnote
  19.         {
  20.             font-family: Arial;
  21.             font-size: 9pt;
  22.             vertical-align: super;
  23.         }
  24.         span.description
  25.         {
  26.             font-family: Arial;
  27.             font-size: 12px;
  28.             vertical-align: top;
  29.         }
  30.         td.widebenefit
  31.         {
  32.             width: 100%;
  33.             border-bottom: none;
  34.         }
  35.         td
  36.         {
  37.             vertical-align: text-top;
  38.             padding-bottom: 13px;
  39.         }
  40.     </style>
  41. </head>
  42. <body>
  43.     <table>
  44.         <tr>
  45.             <td class="widebenefit">
  46.                 <span class="benefit">Benefit D</span><span class="footnote"></span><br>
  47.                 <span class="description">This is the Benefit D Description.</span>
  48.             </td>
  49.         </tr>
  50.         <tr>
  51.             <td class="widebenefit">
  52.                 <span class="benefit">Benefit E</span><span class="footnote"></span><br>
  53.                 <span class="description">This is the Benefit E Description.</span>
  54.             </td>
  55.         </tr>
  56.         <tr>
  57.             <td class="widebenefit">
  58.                 <span class="benefit">Benefit F</span><span class="footnote"></span><br>
  59.                 <span class="description">This is the Benefit F Description.</span>
  60.             </td>
  61.         </tr>
  62.     </table>
  63. </body>
  64. </html>