"Price Table"
Bootstrap 3.0.0 Snippet by silentcoding

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 ---------->
<section id="prices">
<div class="container">
<div class="row">
<div class="col-lg-6 col-lg-offset-3 text-center">
<h2><span class="ion-minus"></span>Prices<span class="ion-minus"></span></h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus </p><br>
</div>
</div>
<div class="prices-box">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 pd0 price-table aos-init aos-animate" data-aos="fade-right">
<div class="top-content text-center">
<div class="title">
<h3>Basic</h3>
</div>
<div class="price">
<span>$10</span>
</div>
<a class="btn btn-default" href="#">Buy Now</a>
</div>
<div class="bottom-content text-center">
<ul class="features list-unstyled">
<li>2 Pages</li>
<li>10 GB Storage</li>
<li>100 GB Bandwidth</li>
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
@import url(https://fonts.googleapis.com/css?family=Raleway:400,900,700,600,500,300,200,100,800);
body{
font-family: 'Raleway', sans-serif;
}
.pd0{
margin: 0;
padding: 0;
}
#prices span{
font-size:30px;
color:#FFF;
}
#prices h3{
color:#FFF;
}
#prices .features li{
padding:10px;
}
#prices .btn.btn-default{
margin:20px 0px;
}
#prices .features-border li{
border-top:1px solid #c7c7c7;
padding: 10px 0px;
}
#prices .features-border li:last-child{
border-bottom:1px solid #c7c7c7;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: