"Price Table Html and css design"
Bootstrap 4.1.1 Snippet by Ranjith Ramesh

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/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!-- Prcing plan starts here -->
<section class="our-plans">
<div class="container">
<div class="row text-center">
<div class="col-md-12">
<h2 class="section-title">Our Pricing and Plan</h2>
</div>
</div>
<!-- PLANS STARTS -->
<div class="row mrt-40">
<div class="price-plan">
<div class="plan-details">
<h2>Silver</h2>
<h3>
<sup>$</sup>
<strong>10,000</strong>
<sub>/PA</sub>
</h3>
</div>
<div class="plan-features">
<ul>
<li>Bronze-Leads</li>
<li>Client Access</li>
<li>Social Media Access</li>
<li>Newsletter Subscriptions</li>
<li>Tech News</li>
<li>Partner Portal</li>
</ul>
</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
.our-plans{
width:100%;
}
.our-plans .price-plan{
width:100%;
padding: 20px;
background: #fff;
border: 1px solid #eaeaea;
margin-bottom: 20px;
}
.our-plans .price-plan:last-child{
margin-bottom: 0;
}
.our-plans .price-plan .plan-details,
.our-plans .price-plan .plan-features,
.our-plans .price-plan .accept-plan{
float:left;
padding: 0 10px;
}
.our-plans .price-plan .plan-details{
width: 25%;
}
.our-plans .price-plan .plan-features{
width:55%;
}
.our-plans .price-plan .accept-plan{
width:20%;
}
.our-plans .price-plan .plan-details h2{
display: block;
font-size: 24px;
line-height: 30px;
font-weight: 700;
padding: 20px 0;
color: #252a37;
margin-bottom: 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: