pricing table style : demo 172

Standard

$1099
  • 50GB Disk Space
  • 50 Email Accounts
  • 50GB Bandwidth
  • Maintenance
  • 15 Subdomains

Business

$2099
  • 50GB Disk Space
  • 50 Email Accounts
  • 50GB Bandwidth
  • Maintenance
  • 15 Subdomains

Premium

$3099
  • 50GB Disk Space
  • 50 Email Accounts
  • 50GB Bandwidth
  • Maintenance
  • 15 Subdomains

HTML

(Icons : Fontawesome & CSS Framwork: Bootstrap)
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
38
39
40
41
42
43
44
45
46
<div class="demo">
    <div class="container">
        <div class="row">
            <div class="col-md-4 col-sm-6">
                <div class="pricingTable">
                    <div class="pricingTable-header">
                        <h3 class="title"><i class="fa fa-car"></i> Standard</h3>
                    </div>
                    <div class="price-value">$10<sup>99</sup></div>
                    <div class="pricing-content">
                        <ul>
                            <li>50GB Disk Space</li>
                            <li>50 Email Accounts</li>
                            <li class="disable">50GB Bandwidth</li>
                            <li>Maintenance</li>
                            <li class="disable">15 Subdomains</li>
                        </ul>
                        <div class="pricingTable-signup">
                            <a href="#">Sign Up</a>
                        </div>
                    </div>
                </div>
            </div>
            <div class="col-md-4 col-sm-6">
                <div class="pricingTable orange">
                    <div class="pricingTable-header">
                        <h3 class="title"><i class="fa fa-train"></i> Business</h3>
                    </div>
                    <div class="price-value">$20<sup>99</sup></div>
                    <div class="pricing-content">
                        <ul>
                            <li>50GB Disk Space</li>
                            <li>50 Email Accounts</li>
                            <li>50GB Bandwidth</li>
                            <li>Maintenance</li>
                            <li class="disable">15 Subdomains</li>
                        </ul>
                        <div class="pricingTable-signup">
                            <a href="#">Sign Up</a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>

CSS

(Fonts required: Roboto.)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
.pricingTable{
    background: #fff;
    font-family: 'Roboto', sans-serif;
    padding: 40px 30px 0;
    margin: 0 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0 70px 0 0;
}
.pricingTable .pricingTable-header{
    padding: 0 0 15px;
    margin: 0 0 20px;
    border-bottom: 1px solid #01CAD2;
}
.pricingTable .title{
    color: #01CAD2;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}
.pricingTable .title i{
    margin-right: 5px;
    display: inline-block;
}
.pricingTable .price-value{
    color: #01CAD2;
    font-size: 100px;
    font-weight: 700;
    line-height: 100px;
    letter-spacing: -3px;
    text-align: center;
    margin: 0 0 20px;
}
.pricingTable .price-value sup{
    font-size: 50px;
    letter-spacing: normal;
    vertical-align: middle;
}
.pricingTable .pricing-content{
    background: linear-gradient(to right bottom, #00CAD4, #01CAB8);
    text-align: center;
    padding: 40px 0;
    margin: 0 -45px;
    border-radius: 60px 0 0 0;
}
.pricingTable .pricing-content ul{
    text-align: left;
    padding: 0 0 25px;
    margin: 0 0 40px;
    list-style: none;
    border-bottom: 1px solid #fff;
    display: inline-block;
}
.pricingTable .pricing-content ul li{
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    padding: 0 0 0 30px;
    margin: 0 0 15px;
    position: relative;
}
.pricingTable .pricing-content ul li:last-child{ margin: 0; }
.pricingTable .pricing-content li:before{
    content: "\f00c";
    font-family: "Font Awesome 5 free";
    font-size: 16px;
    font-weight: 900;
    position: absolute;
    top: 1px;
    left: 0;
}
.pricingTable .pricing-content li.disable:before{ content: "\f00d"; }
.pricingTable .pricing-content li:last-child{ margin-bottom: 0; }
.pricingTable .pricingTable-signup a{
    color: #fff;
    font-size: 25px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 150px;
    padding: 5px;
    margin: 0 auto;
    border: 2px solid #fff;
    border-radius: 50px;
    display: block;
    transition: all 0.5s ease 0s;
}
.pricingTable .pricingTable-signup a:hover{
    text-shadow: 3px 3px rgba(255,255,255,0.5);
    box-shadow: 3px 3px rgba(255,255,255,0.5);
}
.pricingTable.orange .pricingTable-header{ border-bottom-color: #FD9976; }
.pricingTable.orange .title,
.pricingTable.orange .price-value{
    color: #FD9976;
}
.pricingTable.orange .pricing-content{
    background: linear-gradient(to right bottom, #FEA980, #FF6A88);
}
.pricingTable.purple .pricingTable-header{ border-bottom-color: #FF72FC; }
.pricingTable.purple .title,
.pricingTable.purple .price-value{
    color: #FF72FC;
}
.pricingTable.purple .pricing-content{
    background: linear-gradient(to right bottom, #DC55D6, #A236BF);
}
@media only screen and (max-width: 990px){
    .pricingTable{ margin-bottom: 40px; }
}
License Terms