Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>_YOUR_PAGE_TITLE_</title>
<style type="text/css">
table {
margin-bottom: 3em;
width: 100%;
border-collapse:collapse;
}
tr.headings {
height: 30px;
background: #1bd;
}
table tr th, table tr td {
height: 24px;
text-align: center;
border: 1px solid #000;
}
th.lft, td.lft {
text-align: left;
}
</style>
</head>
<body>
<table>
<tr class="headings">
<th class="lft">Package Details</th>
<th>Starter</th>
<th>Network</th>
<th>Business</th>
<th>Ultimate</th>
</tr>
<tr>
<td class="lft">Monthly</td>
<td>$20</td>
<td>$30</td>
<td>$40</td>
<td>$50</td>
</tr>
<tr>
<td class="lft"><strong>Yearly (2 months free)</strong></td>
<td>$200</td>
<td>$300</td>
<td>$400</td>
<td>$500</td>
</tr>
<tr>
<td class="lft">Setup Fee</td>
<td>FREE</td>
<td>FREE</td>
<td>FREE</td>
<td>FREE</td>
</tr>
<tr> </tr>
<tr class="headings">
<th class="lft">Account Features</th>
<th>Starter</th>
<th>Network</th>
<th>Business</th>
<th>Ultimate</th>
</tr>
<tr>
<td class="lft">Host Domains</td>
<td>Unlimited</td>
<td>Unlimited</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
<tr>
<td class="lft">Disk Space</td>
<td>10 GB</td>
<td>15 GB</td>
<td>20 GB</td>
<td>30 GB</td>
</tr>
<tr>
<td class="lft">Traffic/Bandwidth</td>
<td>300 GB</td>
<td>500 GB</td>
<td>750 GB</td>
<td>1,000 GB</td>
</tr>
<tr>
<td class="lft">MySQL / PostgreSQL Databases</td>
<td>Unlimited</td>
<td>Unlimited</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
<tr>
<td class="lft">FTP Accounts</td>
<td>Unlimited</td>
<td>Unlimited</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
<tr>
<td class="lft">Dedicated IP Address</td>
<td>2</td>
<td>2</td>
<td>2</td>
<td>2</td>
</tr>
<tr>
<td class="lft">Daily Backup</td>
<td><img src="../images/yes.gif" width="16" height="16" alt="Yes"></td>
<td><img src="../images/yes.gif" width="16" height="16" alt="Yes"></td>
<td><img src="../images/yes.gif" width="16" height="16" alt="Yes"></td>
<td><img src="../images/yes.gif" width="16" height="16" alt="Yes"></td>
</tr>
<tr>
<td class="lft">Private Label Nameservers</td>
<td><img src="../images/yes.gif" width="16" height="16" alt="Yes"></td>
<td><img src="../images/yes.gif" width="16" height="16" alt="Yes"></td>
<td><img src="../images/yes.gif" width="16" height="16" alt="Yes"></td>
<td><img src="../images/yes.gif" width="16" height="16" alt="Yes"></td>
</tr>
<tr>
<td class="lft"> </td>
<td>
<a href="/order.php?plan=1"><img src="../images/order.gif" width="" height="" alt="Order Now!"></a>
</td>
<td>
<a href="/order.php?plan=2"><img src="../images/order.gif" width="" height="" alt="Order Now!"></a>
</td>
<td>
<a href="/order.php?plan=3"><img src="../images/order.gif" width="" height="" alt="Order Now!"></a>
</td>
<td>
<a href="/order.php?plan=4"><img src="../images/order.gif" width="" height="" alt="Order Now!"></a>
</td>
</tr>
</table>
<h3>Customer Testimonial</h3>
<p>I spent a good deal of time researching the masses of different hosting
companies until deciding on Company. I have been with them for nearly a year now and I can't even begin to express how great my experience has been. Not only do I consider Company to be top notch among hosting companies, but I also consider them to be top notch among businesses of all types. Company's customer care towers above ANY organization or company that I have ever dealt with. I am proud to be with Company and am proud to keep spreading the word about them.</p>
</body>
</html>
The only recommendation I might have opposed to Twey's is to blockquote the Customer Tutorial and add the customer who said it? but thats up to you.. something like
Code:
<h3>Customer Testimonial</h3>
<blockquote>
<q class="testimonial">I spent a good deal of time researching the masses of different hosting companies until deciding on Company. I have been with them for nearly a year now and I can't even begin to express how great my experience has been. Not only do I consider Company to be top notch among hosting companies, but I also consider them to be top notch among businesses of all types. Company's customer care towers above ANY organization or company that I have ever dealt with. I am proud to be with Company and am proud to keep spreading the word about them.</q>
<q class="author">— Joseph Smith</q>
</blockquote>
then you just add this to your style sheet
Code:
blockquote {
quotes: none;
background: #cecece url("/images/quote-begin.gif") no-repeat top left;
}
blockquote q {
display: block;
}
q. content {
text-indent: 10px;
}
q.author {
quotes: none;
text-align: right;
background: inherit url("/mages/quote-end.gif") no-repeat bottom right;
}
blockquote inheritly has some styles put on them and they are ideal for short citations from a person. the style ensures the content and the customer name are on their own line, and after adding the classes to each you can style them up further, like putting in your own quotations etc.
See Example
Bookmarks