pricing-table.html 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. ---
  2. title: Pricing table
  3. page-header: Pricing table
  4. page-menu: extra.pricing-table
  5. layout: default
  6. permalink: pricing-table.html
  7. ---
  8. <div class="card">
  9. <div class="table-responsive">
  10. <table class="table table-vcenter table-bordered table-nowrap card-table">
  11. <thead>
  12. <tr>
  13. <td class="w-50">
  14. <h2>Pricing plans for teams of all sizes</h2>
  15. <div class="text-secondary text-wrap">
  16. Choose an affordable plan that comes with the best features to engage your audience, create customer loyalty and increase sales.
  17. </div>
  18. </td>
  19. <td class="text-center">
  20. <div class="text-uppercase text-secondary font-weight-medium">Starter</div>
  21. <div class="display-6 fw-bold my-3">$0</div>
  22. <a href="#" class="btn w-100">Choose plan</a>
  23. </td>
  24. <td class="text-center">
  25. <div class="text-uppercase text-secondary font-weight-medium">Professional</div>
  26. <div class="display-6 fw-bold my-3">$9</div>
  27. <a href="#" class="btn btn-green w-100">Choose plan</a>
  28. </td>
  29. <td class="text-center">
  30. <div class="text-uppercase text-secondary font-weight-medium">Business</div>
  31. <div class="display-6 fw-bold my-3">$16</div>
  32. <a href="#" class="btn w-100">Choose plan</a>
  33. </td>
  34. </tr>
  35. </thead>
  36. <tbody>
  37. <tr class="bg-light">
  38. <th colspan="4" class="subheader">Features</th>
  39. </tr>
  40. <tr>
  41. <td>Some info about feature</td>
  42. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  43. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  44. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  45. </tr>
  46. <tr>
  47. <td>Online payment gateway</td>
  48. <td class="text-center">{% include "ui/icon.html" icon="x" class="text-red" %}</td>
  49. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  50. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  51. </tr>
  52. <tr>
  53. <td>Unlimited products can be sold</td>
  54. <td class="text-center">{% include "ui/icon.html" icon="x" class="text-red" %}</td>
  55. <td class="text-center">{% include "ui/icon.html" icon="x" class="text-red" %}</td>
  56. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  57. </tr>
  58. <tr class="bg-light">
  59. <th colspan="4" class="subheader">Reporting</th>
  60. </tr>
  61. <tr>
  62. <td>Free hosting and domain name</td>
  63. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  64. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  65. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  66. </tr>
  67. <tr>
  68. <td>Admin dashboard to control items</td>
  69. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  70. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  71. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  72. </tr>
  73. <tr class="bg-light">
  74. <th colspan="4" class="subheader">Support</th>
  75. </tr>
  76. <tr>
  77. <td>Email marketing and service</td>
  78. <td class="text-center">{% include "ui/icon.html" icon="x" class="text-red" %}</td>
  79. <td class="text-center">{% include "ui/icon.html" icon="x" class="text-red" %}</td>
  80. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  81. </tr>
  82. <tr>
  83. <td>24/7 customer support online</td>
  84. <td class="text-center">{% include "ui/icon.html" icon="x" class="text-red" %}</td>
  85. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  86. <td class="text-center">{% include "ui/icon.html" icon="check" class="text-green" %}</td>
  87. </tr>
  88. </tbody>
  89. <tfoot>
  90. <tr>
  91. <td></td>
  92. <td>
  93. <a href="#" class="btn w-100">Choose plan</a>
  94. </td>
  95. <td>
  96. <a href="#" class="btn btn-green w-100">Choose plan</a>
  97. </td>
  98. <td>
  99. <a href="#" class="btn w-100">Choose plan</a>
  100. </td>
  101. </tr>
  102. </tfoot>
  103. </table>
  104. </div>
  105. </div>