content logo

Bootstrap Tables:

Bootstrap Pricing Table with Color Exchange on Hover

Pricing tables are special tools that enable you to display the prices and different features for various product, services, packages, and subscription plans in a beautiful and well-designed layout. It offers many great features to ensure your table is as interesting and inviting as possible. this means your customers will certainly be interested to make a purchase. With that said, some designers prefer to put their time and energy into designing more important aspects of the website. Well, first of all, the pricing page is one of the most important sections of the website. Second of all, if you still think you would prefer to put more effort into designing other sections, then why not use a template to both save time and ensure a good SEO rank.

To make your website more beautiful and responsive, we have a Bootstrap pricing table. This table includes a black and mint green colour theme. In hover mode, the pricing table colours invert which creates a really pleasing switch colour style effect. The pricing table includes all the basic features required for a nice Bootstrap colour table in a pricing page. The title is written at the top plus the actual price. The main features of each product or plan is also stated in a list under the title with a black background.

#

Bootstrap Pricing Table

#

Swich Color Style

#

Pricing Table Colors

#

Bootstrap Color Table

<!-- This script got from frontendfreecode.com -->
<div class="pricing-area">
  <div class="container">
    <div class="row">
      <div class="col-md-4 col-sm-4 col-xs-4">
        <div class="single-price">
          <div class="deal-top">
            <h3>Basic</h3>
            <h4> 29 <span class="sup">$</span> </h4> 
          </div>
          <div class="deal-bottom">
            <ul class="deal-item">
              <li>10 GB Storage</li>
              <li>10 Email address</li>
              <li>10 Domain names</li>
              <li>500 gb Bandwidth </li>
              <li>24 hour Support </li>
            </ul>
            <div class="btn-area">
              <a href="#">Sign Up</a>				
            </div>
          </div>
        </div>
      </div>
      <div class="col-md-4 col-sm-4 col-xs-4">
        <div class="single-price">
          <div class="deal-top">
            <h3>Standard</h3>
            <h4> 59 <span class="sup">$</span> </h4>
          </div>
          <div class="deal-bottom">
            <ul class="deal-item">
              <li>50 GB Storage</li>
              <li>50 Email address</li>
              <li>50 Domain names</li>
              <li>1 TB Bandwidth </li>
              <li>24 hour Support </li>
            </ul>
            <div class="btn-area">
              <a href="#">Sign Up</a>				
            </div>
          </div>
        </div>
      </div>
      <div class="col-md-4 col-sm-4 col-xs-4">
        <div class="single-price">
          <div class="deal-top">
            <h3>Professional</h3>
            <h4> 79 <span class="sup">$</span> </h4> 
          </div>
          <div class="deal-bottom">
            <ul class="deal-item">
              <li>100 GB Storage</li>
              <li>100 Email address</li>
              <li>100 Domain names</li>
              <li>5 TB Bandwidth </li>
              <li>24 hour Support </li>
            </ul>
            <div class="btn-area">
              <a href="#">Sign Up</a>				
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>       
</div><a style="font-size: 8pt; text-decoration: none" target="_blank" href="http://frontendfreecode.com">Free Frontend</a>
                                                                            
.single-price {
  text-align: center;
  background: #262626;
  transition: .7s;
  margin-top: 20px;
}
.single-price h3 {
  font-size: 19px;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin: 0;
  margin-top: -80px;
  font-family: poppins;
  color: #fff;
}
.single-price h4 {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
}
.single-price h4 span.sup {
  vertical-align: text-top;
  font-size: 25px;
}
.deal-top {
  position: relative;
  background: #16A086;
  font-size: 16px;
  text-transform: uppercase;
  padding: 136px 15px 0;
}
.deal-top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 0;
  height: 0;
  border-top: 50px solid #16A086;
  border-left: 82px solid transparent;
  border-right: 88px solid transparent;
}
.deal-bottom {
  padding: 56px 16px 0;
}
.deal-bottom ul {
  margin: 0;
  padding: 0;
}
.deal-bottom  ul li {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin-top: 16px;
  border-top: 1px solid #E4E4E4;
  padding-top: 16px;
  list-style: none;
}
.btn-area a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  background: #16A086;
  padding: 7px 38px;
  margin-top: 32px;
  border-radius: 4px;	
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}


.single-price:hover {
  background: #16A086;
}
.single-price:hover .deal-top {
  background: #262626;
}
.single-price:hover .deal-top:after {
  border-top: 50px solid #262626;
}
.single-price:hover .btn-area a {
  background: #262626;
}
/* ignore the code below */
.link-area
{
  position:fixed;
  bottom:20px;
  left:20px;  
  padding:15px;
  border-radius:40px;
  background:tomato;
}
.link-area a
{
  text-decoration:none;
  color:#fff;
  font-size:25px;
}
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- This script got from frontendfreecode.com -->

<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
<style>
.single-price {
  text-align: center;
  background: #262626;
  transition: .7s;
  margin-top: 20px;
}
.single-price h3 {
  font-size: 19px;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin: 0;
  margin-top: -80px;
  font-family: poppins;
  color: #fff;
}
.single-price h4 {
  font-size: 48px;
  font-weight: 500;
  color: #fff;
}
.single-price h4 span.sup {
  vertical-align: text-top;
  font-size: 25px;
}
.deal-top {
  position: relative;
  background: #16A086;
  font-size: 16px;
  text-transform: uppercase;
  padding: 136px 15px 0;
}
.deal-top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 0;
  height: 0;
  border-top: 50px solid #16A086;
  border-left: 82px solid transparent;
  border-right: 88px solid transparent;
}
.deal-bottom {
  padding: 56px 16px 0;
}
.deal-bottom ul {
  margin: 0;
  padding: 0;
}
.deal-bottom  ul li {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  margin-top: 16px;
  border-top: 1px solid #E4E4E4;
  padding-top: 16px;
  list-style: none;
}
.btn-area a {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  background: #16A086;
  padding: 7px 38px;
  margin-top: 32px;
  border-radius: 4px;	
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
}


.single-price:hover {
  background: #16A086;
}
.single-price:hover .deal-top {
  background: #262626;
}
.single-price:hover .deal-top:after {
  border-top: 50px solid #262626;
}
.single-price:hover .btn-area a {
  background: #262626;
}
/* ignore the code below */
.link-area
{
  position:fixed;
  bottom:20px;
  left:20px;  
  padding:15px;
  border-radius:40px;
  background:tomato;
}
.link-area a
{
  text-decoration:none;
  color:#fff;
  font-size:25px;
}
</style>

</head>
<body>
<div class="pricing-area">
  <div class="container">
    <div class="row">
      <div class="col-md-4 col-sm-4 col-xs-4">
        <div class="single-price">
          <div class="deal-top">
            <h3>Basic</h3>
            <h4> 29 <span class="sup">$</span> </h4> 
          </div>
          <div class="deal-bottom">
            <ul class="deal-item">
              <li>10 GB Storage</li>
              <li>10 Email address</li>
              <li>10 Domain names</li>
              <li>500 gb Bandwidth </li>
              <li>24 hour Support </li>
            </ul>
            <div class="btn-area">
              <a href="#">Sign Up</a>				
            </div>
          </div>
        </div>
      </div>
      <div class="col-md-4 col-sm-4 col-xs-4">
        <div class="single-price">
          <div class="deal-top">
            <h3>Standard</h3>
            <h4> 59 <span class="sup">$</span> </h4>
          </div>
          <div class="deal-bottom">
            <ul class="deal-item">
              <li>50 GB Storage</li>
              <li>50 Email address</li>
              <li>50 Domain names</li>
              <li>1 TB Bandwidth </li>
              <li>24 hour Support </li>
            </ul>
            <div class="btn-area">
              <a href="#">Sign Up</a>				
            </div>
          </div>
        </div>
      </div>
      <div class="col-md-4 col-sm-4 col-xs-4">
        <div class="single-price">
          <div class="deal-top">
            <h3>Professional</h3>
            <h4> 79 <span class="sup">$</span> </h4> 
          </div>
          <div class="deal-bottom">
            <ul class="deal-item">
              <li>100 GB Storage</li>
              <li>100 Email address</li>
              <li>100 Domain names</li>
              <li>5 TB Bandwidth </li>
              <li>24 hour Support </li>
            </ul>
            <div class="btn-area">
              <a href="#">Sign Up</a>				
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>       
</div><div id="bcl"><a style="font-size:8pt;text-decoration:none;" href="http://www.devanswer.com">Free Frontend</a></div>

</body>
</html>
Preview