Forked from ShannonSChang/Tiers and Pricing.html
Last active
December 22, 2015 18:29
-
-
Save kballenegger/6513030 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
<html> | |
<head> | |
<title>Box Pricing</title> | |
<style> | |
td:nth-child(2) { | |
border-left:1px solid black; | |
} | |
td { | |
padding: 5px; | |
} | |
</style> | |
</head> | |
<body> | |
<!-- this is the first Table, which is about the price for each box service --> | |
<table style="border-collapse:collapse;"> | |
<thead> | |
<tr> | |
<th colspan="2" style="color:pink; background-color:black"><strong>Tiers and Pricing Strategy</strong></th> | |
</tr> | |
<tr style="border-bottom:1px solid black;"> | |
<th style="padding:5px;background-color:pink">Box Category</th> | |
<th style="padding:5px;border-left:1px solid black;background-color:pink"> Price (USD)</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>First Time XXXX</td> | |
<td>35</td> | |
</tr> | |
<tr> | |
<td>First Time XXXY</td> | |
<td>35</td> | |
</tr> | |
<tr> | |
<td>First Time XYXY</td> | |
<td>35</td> | |
<tr> | |
<td>Midcore XXXX</td> | |
<td>50</td> | |
</tr> | |
<tr> | |
<td>Midcore XXXY</td> | |
<td>50</td> | |
</tr> | |
<tr> | |
<td>Midcore XYXY</td> | |
<td>50</td> | |
<tr> | |
<td>Hardcore XXXX</td> | |
<td>75</td> | |
</tr> | |
<tr> | |
<td>Hardcore XXXY</td> | |
<td>75</td> | |
</tr> | |
<tr> | |
<td>Hardcore XYXY</td> | |
<td>75</td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment