Bootstrap snippet and html example. bs4 Ticket Pricing

This html snippet was created to help web designers, web developers, front-end and back-end developer save time. Use it for free in your project and build your app faster, You can also download the HTML, CSS, and JS code.
Tags: pricing

HTML code

This is the html code used to create this bootstrap snippet, You can copy and paste the following html code inside a page with bootstrap 4.3.1 included, to get the result that you can see in the preview selection

<div class="bg-dark pt90 pb60" id="pricing">
            <div class="container">
                <div class="center-title mb60 text-center">
                    <h2 class="text-white">Ticket pricing</h2>
                    <p class="text-white-gray">Easy pricing. Cancel anytime.</p>
                </div>
                <div class="row">
                <div class="pricing-table  align-items-center">
                    <div class="col-lg-3 col-md-6 plan">
                        <div class="plan-header">
                            <h4>Bronze pass</h4>
                            <h1 class="text-info">$99.99 <small>/ 1 Seat</small></h1>
                            <h6>Front View</h6>
                        </div>
                        <a href="#" class="btn btn-secondary btn-lg btn-block">Book Now</a>
                        <ul class="list-unstyled">
                            <li><i class="fa fa-check-circle-o"></i> <strong>5Gb</strong> Disk Space</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>50Gb</strong> Monthly Bandwdith</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>10</strong> Email Accounts</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>Unlimited</strong> Sub domains</li>
                        </ul>
                    </div>
                    <div class="col-lg-3 col-md-6 plan popular-plan">
                        <div class="plan-header">
                            <div class="mb30"><span class="badge badge-primary">Best Value</span></div>
                            <h4>Silver Pass</h4>
                            <h1 class="text-primary">$199.99 <small>/ Seat</small></h1>
                            <h6>Middle view</h6>
                        </div>
                        <a href="#" class="btn btn-primary btn-lg btn-block">Book Now</a>
                        <ul class="list-unstyled">
                            <li><i class="fa fa-check-circle-o"></i> <strong>5Gb</strong> Disk Space</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>50Gb</strong> Monthly Bandwdith</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>10</strong> Email Accounts</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>Unlimited</strong> Sub domains</li>
                        </ul>
                    </div>
                    <div class="col-lg-3 col-md-6 plan">
                        <div class="plan-header">
                            <h4>Golden pass</h4>
                            <h1 class="text-info">$299.99 <small>/ 1 seat</small></h1>
                             <h6>All benefits</h6>
                        </div>
                        <a href="#" class="btn btn-secondary btn-lg btn-block">Book Now</a>
                        <ul class="list-unstyled">
                            <li><i class="fa fa-check-circle-o"></i> <strong>500Gb</strong> Disk Space</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>50Gb</strong> Monthly Bandwdith</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>Unlimited</strong> Email Accounts</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>Unlimited</strong> Sub domains</li>
                        </ul>
                    </div>
                    <div class="col-lg-3 col-md-6 plan">
                        <div class="plan-header">
                            <h4>VIP pass</h4>
                            <h1 class="text-info">$399.99 <small>/ 1 seat</small></h1>
                            <h6>All benefits</h6>
                        </div>
                        <a href="#" class="btn btn-secondary btn-lg btn-block">Book Now</a>
                        <ul class="list-unstyled">
                            <li><i class="fa fa-check-circle-o"></i> <strong>5Gb</strong> Disk Space</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>50Gb</strong> Monthly Bandwdith</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>10</strong> Email Accounts</li>
                            <li><i class="fa fa-check-circle-o"></i> <strong>Unlimited</strong> Sub domains</li>
                        </ul>
                    </div>
                </div>
            </div>
            </div>
        </div>

CSS code

This is the css code used to create this bootstrap snippet, You can copy and paste the following css code inside a page with bootstrap 4.3.1 included, to get the result that you can see in the preview selection

body {
    margin-top: 20px;
}


/*
Pricing tables
*/

.pricing-table {
    margin: 10px 0;
    padding: 0 15px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.plan {
    background-color: #fbfbfb;
    border-radius: 0px;
    color: #333;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.plan h6 {
    color: #aeaeae;
    font-weight: 400;
}

.plan .pricing-content {
    padding: 2em 0 1.5em 1.5em;
}

.plan .plan-header {
    padding: 2em 0 1.5em 1.5em;
}

.plan .plan-header h1 {
    font-weight: 700;
}

.plan .plan-header h1 small {
    font-size: 14px;
}

.plan ul {
    padding: 2em 0 2em 1.5em;
    margin: 0px;
}

.plan ul li {
    padding: 5px 0;
    font-size: 15px;
    color: #999;
}

.plan ul li i {
    color: #8bcb26;
    display: inline-block;
    margin-right: 10px;
}

.plan.popular-plan {
    box-shadow: 11px 0 10px -10px rgba(0, 0, 0, 0.3), -11px 0 10px -10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.plan.plan-dark {
    border: 0px;
}

.plan.plan-dark h1,
.plan.plan-dark ul li,
.plan.plan-dark ul li i,
.plan.plan-dark h6,
.plan.plan-dark h4 {
    color: #fff;
}

.plan.plan-dark h4,
.plan.plan-dark ul li,
.plan.plan-dark h6 {
    opacity: 0.8;
}

Similar snippets

Bootstrap example and template. pricing plans with background curve

pricing plans with background curve

Bootstrap example and template. Pricing table with detail

Pricing table with detail

Bootstrap example and template. pricing table colors

pricing table colors

Bootstrap example and template. Pricing table

Pricing table

Bootstrap example and template. white chat

white chat

Bootstrap example and template. profile edit data and skills

profile edit data and skills

Bootstrap example and template. profile with data and skills

profile with data and skills

Bootstrap example and template. Profile settings

Profile settings

Bootstrap example and template. bs4 Ticket Pricing

About this bootstrap example/template

We hope you will enjoy this awesome snippet and stay tuned for the latest updates, bootdey snippets are already used in thousands of blogs, websites and projects. We believe it will save your precious time and gives trendy look to your next web project.

We always try to offer the best beautiful and responsive source of Bootstrap code examples and components.

This code example currectly have 416 views, Using this bootstrap snippet you have the following benefits:

Bootstrap 4.3.1

<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'>

<script src='https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js'></script>

This code example is based on bootstrap 4.3.1 and the grid system of this framework

Responsive

Based on bootstrap framework makes all the layouts perfectly responsive for all devices

Crossbrowser compatibility

Tested on all major browsers, it works smoothly on all of them

semantic html 5

Built on html / css3 the code quality is really amazing

Simple Integration

This code example can be simply integrated on existing sites and new ones too, all you need to do is copy the code and start working