
how to create a Pricing Table in html
Before We Start
Every developers need, clean and modern elements to develop their websites, It contain pictures and a user interface element within a website. The most important one and the first section that the user sees when he/she enters a website. how to create a Pricing Table in html
So if you are a person who wishes to develop a website, you have to know how to create that properly.

how to create a Pricing Table in html
Download Udemy paid courses FREE
We are here to solve your problem. In this article we discuss how to create this elements. Before we start please read the below articles which easier you to understand the process, if you are new to development.
Step 1 – Add HTML
It’s too easy and simple. Just copy and paste below code in your HTML editor between <body> </body> tag.
<div class="wrap">
<div class="pricing-table">
<div class="plan">
<h3 class="name">Basic</h3>
<h4 class="price">$10<span>/month</span></h4>
<ul class="details">
<li><strong>1</strong> Database</li>
<li><strong>10GB</strong> file storage</li>
<li><strong>100GB</strong> bandwidth</li>
</ul>
<h5 class="order"><a href="#">Order Now</a></h5>
</div>
<!--.plan-->
<div class="plan">
<h3 class="name">Standard</h3>
<h4 class="price">$20<span>/month</span></h4>
<ul class="details">
<li><strong>2</strong> Databases</li>
<li><strong>20GB</strong> file storage</li>
<li><strong>150GB</strong> bandwidth</li>
</ul>
<h5 class="order"><a href="#">Order Now</a></h5>
</div>
<!--.plan-->
<div class="plan">
<h3 class="name">Premium</h3>
<h4 class="price">$30<span>/month</span></h4>
<ul class="details">
<li><strong>5</strong> Databases</li>
<li><strong>50GB</strong> file storage</li>
<li><strong>500GB</strong> bandwidth</li>
</ul>
<h5 class="order"><a href="#">Order Now</a></h5>
</div>
<!--.plan-->
</div>
<!--.pricing-table-->
</div>
<!--.wrap-->
Step 2 – Add CSS
Download Udemy paid courses FREE
Copy and paste below code in your HTML editor between <style></style> tag.
<style>
@import url("https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i");
* {
margin: 0;
padding: 0;
}
.cf:before, .pricing-table:before,
.cf:after,
.pricing-table:after {
content: ".";
display: block;
height: 0;
overflow: hidden;
}
.cf:after, .pricing-table:after {
clear: both;
}
.cf, .pricing-table {
zoom: 1;
}
body {
font: 16px/28px "Roboto";
font-weight: lighter;
background-color: #90a4ae;
}
strong {
font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
font-weight: lighter;
}
.wrap {
width: 900px;
margin: 70px auto;
color: #607d8b;
box-shadow: 1px 1px 10px #424242;
}
.pricing-table .plan {
box-sizing: border-box;
width: 300px;
background-color: #fff;
float: left;
text-align: center;
position: relative;
z-index: 10;
}
.pricing-table .plan h3.name {
font-size: 20px;
background-color: #546e7a;
padding: 15px;
color: #fff;
}
.pricing-table .plan h4.price {
font-size: 49px;
color: #fff;
padding: 30px;
background-color: #01A4F5;
line-height: 40px;
}
.pricing-table .plan h4.price span {
font-size: 16px;
font-style: italic;
}
.pricing-table .plan ul.details {
list-style-type: none;
}
.pricing-table .plan ul.details li {
border-bottom: 1px solid #B3B9C4;
padding: 15px;
}
.pricing-table .plan h5.order {
padding: 30px;
font-size: 17px;
}
.pricing-table .plan h5.order a {
text-decoration: none;
color: #fff;
background-color: #01A4F5;
padding: 10px 20px;
}
.pricing-table .plan:first-child h4.price {
background-color: #0EC0A5;
}
.pricing-table .plan:first-child h5.order a {
background-color: #0EC0A5;
}
.pricing-table .plan:last-child h4.price {
background-color: #F22D47;
}
.pricing-table .plan:last-child h5.order a {
background-color: #F22D47;
}
.pricing-table .plan:nth-child(2n) {
box-shadow: 0px 0px 10px #424242;
z-index: 100;
}
</style>
At the end we will have something like this. You can change fonts, colors, backgrounds and all things that you want. Enjoy it.

Video Tutorial
Please watch this video to better understand this tutorial and don’t forget to subscribe to our channel.
Download Udemy paid courses FREE
Help others to find out about this article on Social Media sites. If you have any doubt or any problem, don’t hesitate to contact us. Thereafter we will be able to help you and also make sure you bookmark our site on your browser.