"Bootstrap Joint Pricing Cards"
Bootstrap 3.3.0 Snippet by Webcentcreations

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row justifycenter m-t-b-5">
<div class="col-md-4 mt-3 price_cards_col">
<div class="pricing_cards">
<div class="pricing_header">
<h2>Basic</h2>
<h3>$5 /Month</h3>
</div>
<div class="pricing_body">
<ul>
<li>Access To Extra, Bloom & Monarch</li>
<li>Hundreds Of Website Packs</li>
<li>Product Updates</li>
<li>Premium Support</li>
<li>Unlimited Website Usage</li>
<li>Risk-Free Guarantee</li>
</ul>
</div>
<div class="pricing_footer">
<a class="btn buy-btn">Buy</a>
</div>
</div>
</div>
<div class="col-md-4 mt-3 price_cards_col">
<div class="pricing_cards popularcard">
<div class="pricing_header">
<h2>Advance</h2>
<h3>$15 /Month</h3>
<span class="popular-tag">POPULAR</span>
</div>
<div class="pricing_body">
<ul>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.m-t-b-5{
margin-top: 3em;
margin-bottom: 3em;
}
.mt-3{
margin-top: 1.5em;
}
.justifycenter{
justify-content: center;
}
.price_cards_col{
padding-left: 0em;
padding-right: 0em;
}
@media(max-width:410px){
.price_cards_col{
padding-left: 2em;
padding-right: 2em;
}
}
@media(max-width:767px){
.price_cards_col{
padding-left: 3em;
padding-right: 3em;
}
}
@media(min-width:768px){
.price_cards_col{
padding-left: 10em;
padding-right: 10em;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: