Created
April 15, 2011 06:23
-
-
Save jboeke/921238 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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | |
<html> | |
<head> | |
<style type="text/css"> | |
body | |
{ | |
font-family: Arial; | |
color: black; | |
background-color: white; | |
} | |
span.benefit | |
{ | |
font-family: Arial; | |
font-weight: bold; | |
font-size: 13pt; | |
vertical-align: top; | |
} | |
span.footnote | |
{ | |
font-family: Arial; | |
font-size: 9pt; | |
vertical-align: super; | |
} | |
span.description | |
{ | |
font-family: Arial; | |
font-size: 12px; | |
vertical-align: top; | |
} | |
td.widebenefit | |
{ | |
width: 100%; | |
border-bottom: none; | |
} | |
td | |
{ | |
vertical-align: text-top; | |
padding-bottom: 13px; | |
} | |
</style> | |
</head> | |
<body> | |
<table> | |
<tr> | |
<td class="widebenefit"> | |
<span class="benefit">Benefit D</span><span class="footnote"></span><br> | |
<span class="description">This is the Benefit D Description.</span> | |
</td> | |
</tr> | |
<tr> | |
<td class="widebenefit"> | |
<span class="benefit">Benefit E</span><span class="footnote"></span><br> | |
<span class="description">This is the Benefit E Description.</span> | |
</td> | |
</tr> | |
<tr> | |
<td class="widebenefit"> | |
<span class="benefit">Benefit F</span><span class="footnote"></span><br> | |
<span class="description">This is the Benefit F Description.</span> | |
</td> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment