"pricing table"
Bootstrap 3.0.0 Snippet by duragaprasad

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="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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 ---------->
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<section class="pricing" id="pricing">
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="pricing-table">
<div class="pricing-header">
<div class="pt-price">$9.99<small>/m</small></div>
<div class="pt-name">Standard</div>
</div>
<div class="pricing-body">
<ul>
<li><i class="fa fa-check"></i> 2GB Space</li>
<li><i class="fa fa-check"></i> 10GB Bandwidth</li>
<li><i class="fa fa-check"></i> Free Domain</li>
<li><i class="fa fa-times"></i> Free Email</li>
<li><i class="fa fa-times"></i> Free cPanel</li>
<li><i class="fa fa-times"></i> Free FTP</li>
<li><i class="fa fa-times"></i> Free Support</li>
</ul>
</div>
<div class="pricing-footer">
<a href="#" class="btn btn-default">Purchase</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="pricing-table">
<div class="pricing-header">
<div class="pt-price">$19.99<small>/m</small></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
.pricing {
padding: 100px 0;
}
.pricing-table {
border: 1px solid #f2f2f2;
border-radius: 5px;
background-color: #fff;
}
.pricing-table .pricing-header .pt-price {
font-family: "Oswald";
color: #4c4c4c;
font-size: 40px;
line-height: 70px;
font-weight: 400;
text-align: center;
padding: 10px 40px;
}
.pricing-table .pricing-header .pt-price small {
font-size: 13px;
color: #9a9a9a;
font-weight: 300;
}
.pricing-table .pricing-header .pt-name {
font-family: "Oswald";
padding: 10px 40px;
text-align: center;
font-weight: 300;
font-size: 24px;
line-height: 40px;
color: #4c4c4c;
border-top: 1px solid #f2f2f2;
border-bottom: 1px solid #f2f2f2;
}
.pricing-table .pricing-body ul {
margin: 0;
padding: 0;
list-style: none;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: