Homepage Setup
Creating Pricing Table
Use the HTML code structure below in order to create a pricing table
<table class="gabfire-pricingtable"> <thead> <tr> <th></th> <th scope="col">Starter</th> <th scope="col">Medium</th> <th scope="col">Business</th> <th scope="col">Deluxe</th> </tr> </thead> <tfoot> <tr> <th scope="row"></th> <td>$ 4.90</td> <td>$ 6.90</td> <td>$ 9.90</td> <td>$ 13.90</td> </tr> </tfoot> <tbody> <tr> <th scope="row">Storage Space</th> <td>512 MB</td> <td>1 GB</td> <td>2 GB</td> <td>4 GB</td> </tr> <tr> <th scope="row">Bandwidth</th> <td>50 GB</td> <td>100 GB</td> <td>150 GB</td> <td>Unlimited</td> </tr> <tr> <th scope="row">MySQL</th> <td>Unlimited</td> <td>Unlimited</td> <td>Unlimited</td> <td>Unlimited</td> </tr> <tr> <th scope="row">Setup</th> <td>19.90 $</td> <td>12.90 $</td> <td>free</td> <td>free</td> </tr> <tr> <th scope="row">PHP 5</th> <td><i class="icon-check-minus"></i></td> <td><i class="icon-check-minus"></i></td> <td><i class="icon-check"></i></td> <td><i class="icon-check"></i></td> </tr> <tr> <th scope="row">Ruby on Rails</th> <td><i class="icon-check-minus"></i></td> <td><i class="icon-check-minus"></i></td> <td><i class="icon-check"></i></td> <td><i class="icon-check"></i></td> </tr> </tbody> </table>