{"id":4189,"date":"2024-01-19T17:07:00","date_gmt":"2024-01-19T17:07:00","guid":{"rendered":"https:\/\/codehim.com\/?p=4189"},"modified":"2024-01-22T15:08:20","modified_gmt":"2024-01-22T10:08:20","slug":"responsive-pricing-table-using-bootstrap","status":"publish","type":"post","link":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/","title":{"rendered":"Responsive Pricing Table using Bootstrap"},"content":{"rendered":"<section class=\"cm-tb\">\n<div class=\"cm-row\">\n<p class=\"plugin-intro\"> Here is an awesome code snippet to create responsive pricing table using Bootstrap 4 framework and CSS. This <strong>pricing table template<\/strong> is useful for comparing subscription plans or different product tiers. It creates set of three tables (basic, pro and premium) in a row for subscription plans. <\/p>\n<p>Furthermore, you can fully customize table (colors, layout, buttons etc) with Bootstrap built-in classes or with additional CSS. <\/p>\n<\/p><\/div>\n<\/section>\n<section class=\"codehim-wrapper\">\n<div class=\"d-row\">\n<h2>Plugin Preview<\/h2>\n<figure class=\"item-preview\"> <div id=\"featured-img-id\"><img decoding=\"async\" src=\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/responsive-pricing-table-with-bootstrap-codehim.jpg\" alt=\"Responsive Pricing Table using Bootstrap\" \/><\/div> <\/figure>\n<div class=\"item-like-share\"> <div class=\"codehim-share\"> <span class=\"share-title\">Share this:<\/span> <span class=\"share-btn-container\"> <\/span> <\/div> <\/div>\n<p><span class=\"small-text\"><a href=\"https:\/\/codehim.com\/how-to-start-using-jquery\/\"> How to start using jQuery?<\/a><\/span><\/p>\n<p><span class=\"large-text\"><a href=\"https:\/\/codehim.com\"> More jQuery Top, Best and New Plugins <\/a><\/span><\/p>\n<p><span class=\"small-text\"><a href=\"https:\/\/codehim.com\/tag\/top-100\/\"> Top 100 jQuery Plugins<\/a><\/span><\/p>\n<\/div>\n<div class=\"d-row\">\n<h2> Plugin Overview<\/h2>\n<table class=\"plugin-overview\">\n<tbody>\n<tr>\n<td><i class=\"fa fa-plug\"><\/i> Plugin:<\/td>\n<td>pricing-table-bootstrap-snippet<\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-user\"><\/i> Author:<\/td>\n<td><a href=\"https:\/\/bootstrapstudio.io\" target=\"_blank\" class=\"external\" rel=\"noopener noreferrer\"> Bootstrap Studio <\/a><\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-file-text-o\"><\/i> Licence:<\/td>\n<td><a href=\"https:\/\/opensource.org\/licenses\/MIT\" class=\"external\" target=\"_blank\" rel=\"noopener noreferrer\"> MIT Licence<\/a><\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-calendar-check-o\"><\/i> Published:<\/td>\n<td class=\"publish-date\">January 19, 2024<\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-github\"><\/i>Repository:<\/td>\n<td> <a href=\"https:\/\/github.com\/bootstrapstudio\/pricing-table-bootstrap-snippet\" target=\"_blank\" class=\"external\" rel=\"noopener noreferrer\">Fork on GitHub <\/a><\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-link\"><\/i> Dependencies:<\/td>\n<td><a href=\"https:\/\/getbootstrap.com\/docs\/4.3\/getting-started\/download\/\" class=\"external\" target=\"_blank\" rel=\"noopener noreferrer\">Bootstrap 4.1.3 <\/a><\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-file-code-o\"><\/i> File Type:<\/td>\n<td>zip archive (HTML, CSS &#038; JavaScript )<\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-file-archive-o\"><\/i> Package Size:<\/td>\n<td>6.04 KB<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<div class=\"cd-action\"><a class=\"btn demo\" target=\"_blank\" href=\"\/demo\/pricing-table-bootstrap-snippet\/\" rel=\"nofollow noopener noreferrer\"> Demo <\/a><a class=\"btn download\" href=\"\/download\/pricing-table-bootstrap-snippet.zip\" rel=\"nofollow\"> Download<\/a><\/div>\n<\/div>\n<\/section>\n<h2> How to Create Pricing Table with Bootstrap<\/h2>\n<p>1. First of all load <strong>Bootstrap<\/strong> CSS into your HTML document.<\/p>\n<pre class=\"prettyprint lang-html\">\r\n&lt;!-- Bootstrap CSS --&gt;\r\n&lt;link rel='stylesheet' href='https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/twitter-bootstrap\/4.1.3\/css\/bootstrap.min.css'&gt;\r\n<\/pre>\n<p>2. After that create a basic HTML structure for pricing tables as follows:<\/p>\n<pre class=\"prettyprint lang-html\">\r\n&lt;section class=\"pricing-table\"&gt;\r\n   &lt;div class=\"container\"&gt;\r\n      &lt;div class=\"block-heading\"&gt;\r\n         &lt;h2&gt;Pricing Table&lt;\/h2&gt;\r\n         &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc quam urna, dignissim nec auctor in, mattis vitae leo.&lt;\/p&gt;\r\n      &lt;\/div&gt;\r\n      &lt;div class=\"row justify-content-md-center\"&gt;\r\n         &lt;div class=\"col-md-5 col-lg-4\"&gt;\r\n            &lt;div class=\"item\"&gt;\r\n               &lt;div class=\"heading\"&gt;\r\n                  &lt;h3&gt;BASIC&lt;\/h3&gt;\r\n               &lt;\/div&gt;\r\n               &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&lt;\/p&gt;\r\n               &lt;div class=\"features\"&gt;\r\n                  &lt;h4&gt;&lt;span class=\"feature\"&gt;Full Support&lt;\/span&gt; : &lt;span class=\"value\"&gt;No&lt;\/span&gt;&lt;\/h4&gt;\r\n                  &lt;h4&gt;&lt;span class=\"feature\"&gt;Duration&lt;\/span&gt; : &lt;span class=\"value\"&gt;30 Days&lt;\/span&gt;&lt;\/h4&gt;\r\n                  &lt;h4&gt;&lt;span class=\"feature\"&gt;Storage&lt;\/span&gt; : &lt;span class=\"value\"&gt;10GB&lt;\/span&gt;&lt;\/h4&gt;\r\n               &lt;\/div&gt;\r\n               &lt;div class=\"price\"&gt;\r\n                  &lt;h4&gt;$25&lt;\/h4&gt;\r\n               &lt;\/div&gt;\r\n               &lt;button class=\"btn btn-block btn-outline-primary\" type=\"submit\"&gt;BUY NOW&lt;\/button&gt;\r\n            &lt;\/div&gt;\r\n         &lt;\/div&gt;\r\n         &lt;div class=\"col-md-5 col-lg-4\"&gt;\r\n            &lt;div class=\"item\"&gt;\r\n               &lt;div class=\"ribbon\"&gt;Best Value&lt;\/div&gt;\r\n               &lt;div class=\"heading\"&gt;\r\n                  &lt;h3&gt;PRO&lt;\/h3&gt;\r\n               &lt;\/div&gt;\r\n               &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&lt;\/p&gt;\r\n               &lt;div class=\"features\"&gt;\r\n                  &lt;h4&gt;&lt;span class=\"feature\"&gt;Full Support&lt;\/span&gt; : &lt;span class=\"value\"&gt;Yes&lt;\/span&gt;&lt;\/h4&gt;\r\n                  &lt;h4&gt;&lt;span class=\"feature\"&gt;Duration&lt;\/span&gt; : &lt;span class=\"value\"&gt;60 Days&lt;\/span&gt;&lt;\/h4&gt;\r\n                  &lt;h4&gt;&lt;span class=\"feature\"&gt;Storage&lt;\/span&gt; : &lt;span class=\"value\"&gt;50GB&lt;\/span&gt;&lt;\/h4&gt;\r\n               &lt;\/div&gt;\r\n               &lt;div class=\"price\"&gt;\r\n                  &lt;h4&gt;$50&lt;\/h4&gt;\r\n               &lt;\/div&gt;\r\n               &lt;button class=\"btn btn-block btn-primary\" type=\"submit\"&gt;BUY NOW&lt;\/button&gt;\r\n            &lt;\/div&gt;\r\n         &lt;\/div&gt;\r\n         &lt;div class=\"col-md-5 col-lg-4\"&gt;\r\n            &lt;div class=\"item\"&gt;\r\n               &lt;div class=\"heading\"&gt;\r\n                  &lt;h3&gt;PREMIUM&lt;\/h3&gt;\r\n               &lt;\/div&gt;\r\n               &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit.&lt;\/p&gt;\r\n               &lt;div class=\"features\"&gt;\r\n                  &lt;h4&gt;&lt;span class=\"feature\"&gt;Full Support&lt;\/span&gt; : &lt;span class=\"value\"&gt;Yes&lt;\/span&gt;&lt;\/h4&gt;\r\n                  &lt;h4&gt;&lt;span class=\"feature\"&gt;Duration&lt;\/span&gt; : &lt;span class=\"value\"&gt;120 Days&lt;\/span&gt;&lt;\/h4&gt;\r\n                  &lt;h4&gt;&lt;span class=\"feature\"&gt;Storage&lt;\/span&gt; : &lt;span class=\"value\"&gt;150GB&lt;\/span&gt;&lt;\/h4&gt;\r\n               &lt;\/div&gt;\r\n               &lt;div class=\"price\"&gt;\r\n                  &lt;h4&gt;$150&lt;\/h4&gt;\r\n               &lt;\/div&gt;\r\n               &lt;button class=\"btn btn-block btn-outline-primary\" type=\"submit\"&gt;BUY NOW&lt;\/button&gt;\r\n            &lt;\/div&gt;\r\n         &lt;\/div&gt;\r\n      &lt;\/div&gt;\r\n   &lt;\/div&gt;\r\n&lt;\/section&gt;\r\n<\/pre>\n<p>3. Now its time to style your tables, you can download this project and include the <code>style.css<\/code> file into your webpage.<\/p>\n<pre class=\"prettyprint lang-html\">\r\n&lt;link rel=\"stylesheet\" type=\"text\/css\" href=\"css\/style.css\"&gt;\r\n<\/pre>\n<p>4. If you want to add inline CSS styles for Bootstrap responsive pricing table, include the following CSS.<\/p>\n<pre class=\"prettyprint lang-css\">\r\n.pricing-table{\r\n  background-color: #eee;\r\n  font-family: 'Montserrat', sans-serif;\r\n}\r\n\r\n.pricing-table .block-heading {\r\n  padding-top: 50px;\r\n  margin-bottom: 40px;\r\n  text-align: center; \r\n}\r\n\r\n.pricing-table .block-heading h2 {\r\n  color: #3b99e0;\r\n}\r\n\r\n.pricing-table .block-heading p {\r\n  text-align: center;\r\n  max-width: 420px;\r\n  margin: auto;\r\n  opacity: 0.7; \r\n}\r\n\r\n.pricing-table .heading {\r\n  text-align: center;\r\n  padding-bottom: 10px;\r\n  border-bottom: 1px solid rgba(0, 0, 0, 0.1); \r\n}\r\n\r\n.pricing-table .item {\r\n  background-color: #ffffff;\r\n  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);\r\n  border-top: 2px solid #5ea4f3;\r\n  padding: 30px;\r\n  overflow: hidden;\r\n  position: relative; \r\n}\r\n\r\n.pricing-table .col-md-5:not(:last-child) .item {\r\n  margin-bottom: 30px; \r\n}\r\n\r\n.pricing-table .item button {\r\n  font-weight: 600; \r\n}\r\n\r\n.pricing-table .ribbon {\r\n  width: 160px;\r\n  height: 32px;\r\n  font-size: 12px;\r\n  text-align: center;\r\n  color: #fff;\r\n  font-weight: bold;\r\n  box-shadow: 0px 2px 3px rgba(136, 136, 136, 0.25);\r\n  background: #4dbe3b;\r\n  transform: rotate(45deg);\r\n  position: absolute;\r\n  right: -42px;\r\n  top: 20px;\r\n  padding-top: 7px; \r\n}\r\n\r\n.pricing-table .item p {\r\n  text-align: center;\r\n  margin-top: 20px;\r\n  opacity: 0.7; \r\n}\r\n\r\n.pricing-table .features .feature {\r\n  font-weight: 600; }\r\n\r\n.pricing-table .features h4 {\r\n  text-align: center;\r\n  font-size: 18px;\r\n  padding: 5px; \r\n}\r\n\r\n.pricing-table .price h4 {\r\n  margin: 15px 0;\r\n  font-size: 45px;\r\n  text-align: center;\r\n  color: #2288f9; \r\n}\r\n\r\n.pricing-table .buy-now button {\r\n  text-align: center;\r\n  margin: auto;\r\n  font-weight: 600;\r\n  padding: 9px 0; \r\n}\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Here is an awesome code snippet to create responsive pricing table using Bootstrap 4 framework and CSS. This pricing table&#8230;<\/p>\n","protected":false},"author":1,"featured_media":4190,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[56],"tags":[],"class_list":["post-4189","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-others"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Responsive Pricing Table using Bootstrap &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Create responsive pricing table using Bootstrap framework and CSS. Here is free code snippet with using guide for bootstrap 4 pricing tables.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Responsive Pricing Table using Bootstrap &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Create responsive pricing table using Bootstrap framework and CSS. Here is free code snippet with using guide for bootstrap 4 pricing tables.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-19T17:07:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:08:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/responsive-pricing-table-with-bootstrap-codehim.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1993\" \/>\n\t<meta property=\"og:image:height\" content=\"1497\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Responsive Pricing Table using Bootstrap\",\"datePublished\":\"2024-01-19T17:07:00+00:00\",\"dateModified\":\"2024-01-22T10:08:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/\"},\"wordCount\":184,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/responsive-pricing-table-with-bootstrap-codehim.jpg\",\"articleSection\":[\"Others\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/\",\"url\":\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/\",\"name\":\"Responsive Pricing Table using Bootstrap &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/responsive-pricing-table-with-bootstrap-codehim.jpg\",\"datePublished\":\"2024-01-19T17:07:00+00:00\",\"dateModified\":\"2024-01-22T10:08:20+00:00\",\"description\":\"Create responsive pricing table using Bootstrap framework and CSS. Here is free code snippet with using guide for bootstrap 4 pricing tables.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/responsive-pricing-table-with-bootstrap-codehim.jpg\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/responsive-pricing-table-with-bootstrap-codehim.jpg\",\"width\":1993,\"height\":1497,\"caption\":\"Responsive Pricing Table using Bootstrap\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Others\",\"item\":\"https:\/\/codehim.com\/category\/others\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Responsive Pricing Table using Bootstrap\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Responsive Pricing Table using Bootstrap &#8212; CodeHim","description":"Create responsive pricing table using Bootstrap framework and CSS. Here is free code snippet with using guide for bootstrap 4 pricing tables.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/","og_locale":"en_US","og_type":"article","og_title":"Responsive Pricing Table using Bootstrap &#8212; CodeHim","og_description":"Create responsive pricing table using Bootstrap framework and CSS. Here is free code snippet with using guide for bootstrap 4 pricing tables.","og_url":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-19T17:07:00+00:00","article_modified_time":"2024-01-22T10:08:20+00:00","og_image":[{"width":1993,"height":1497,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/responsive-pricing-table-with-bootstrap-codehim.jpg","type":"image\/jpeg"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Responsive Pricing Table using Bootstrap","datePublished":"2024-01-19T17:07:00+00:00","dateModified":"2024-01-22T10:08:20+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/"},"wordCount":184,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/responsive-pricing-table-with-bootstrap-codehim.jpg","articleSection":["Others"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/","url":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/","name":"Responsive Pricing Table using Bootstrap &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/responsive-pricing-table-with-bootstrap-codehim.jpg","datePublished":"2024-01-19T17:07:00+00:00","dateModified":"2024-01-22T10:08:20+00:00","description":"Create responsive pricing table using Bootstrap framework and CSS. Here is free code snippet with using guide for bootstrap 4 pricing tables.","breadcrumb":{"@id":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/responsive-pricing-table-with-bootstrap-codehim.jpg","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/09\/responsive-pricing-table-with-bootstrap-codehim.jpg","width":1993,"height":1497,"caption":"Responsive Pricing Table using Bootstrap"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/others\/responsive-pricing-table-using-bootstrap\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Others","item":"https:\/\/codehim.com\/category\/others\/"},{"@type":"ListItem","position":3,"name":"Responsive Pricing Table using Bootstrap"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":6606,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/4189","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=4189"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/4189\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/4190"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=4189"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=4189"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=4189"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}