"Pricing table"
Bootstrap 3.3.0 Snippet by pixelangel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<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">
<div class="col-md-3 col-sm-6">
<div class="pricingTable">
<div class="pricingTable-header">
<span class="heading">
<h3>Premium</h3>
</span>
<span class="price-value">$192/mo<span class="service">Unlimited</span></span>
</div>
<div class="pricingTable-sign-up">
<a href="#" class="btn btn-default">Purchase</a>
</div>
</div>
</div>
</div>
</div>
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
.pricingTable{
text-align: center;
overflow: hidden;
}
.pricingTable .pricingTable-header{
background: #3F51B5;
}
.pricingTable .heading{
display: block;
padding: 25px 0;
}
.pricingTable .heading:after {
content: "";
width: 28%;
border-top: 1px solid #7c888f;
display: block;
margin: 15px auto 0;
}
.pricingTable .heading h3{
font-size: 24px;
color: #fff;
text-transform: uppercase;
margin:0;
letter-spacing: 2px;
}
.pricingTable .price-value{
font-size: 55px;
color:#fff;
padding: 20px 0 40px 0;
display: block;
}
.pricingTable .service{
display: block;
font-size: 16px;
letter-spacing: 1.5px;
text-transform: uppercase;
margin-top: 15px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: