{"id":8338,"date":"2024-01-11T17:50:00","date_gmt":"2024-01-11T17:50:00","guid":{"rendered":"https:\/\/codehim.com\/?p=8338"},"modified":"2024-01-22T15:51:34","modified_gmt":"2024-01-22T10:51:34","slug":"bootstrap-multi-step-wizard-with-progress-bar","status":"publish","type":"post","link":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/","title":{"rendered":"Bootstrap Multi Step Wizard With Progress Bar"},"content":{"rendered":"<p>This code snippet allows you to create a dynamic multi-step form wizard, where each step is visually represented as a tab. Users can navigate through the different stages of the form by clicking on these tabs. The progress bar at the top of the wizard provides a clear indication of how much of the form has been completed.<\/p>\n<p>This Bootstrap wizard is a fantastic addition to any website or web application that requires users to provide structured information or complete a series of tasks. By implementing code snippet, you can simplify data entry.<\/p>\n<h2>How to Create Bootstrap Multi Step Wizard with Progress Bar<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/getbootstrap.com\/\" target=\"_blank\" rel=\"noopener\">Bootstrap CSS<\/a> by adding the following CDN link into the head tag of your website.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel='stylesheet' href='https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.3.6\/css\/bootstrap.min.css'&gt;\n<\/pre>\n<p>2. Create the HTML structure for the wizard as follows:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"container\"&gt;\n\t&lt;div class=\"row\"&gt;\n\t\t&lt;section&gt;\n        &lt;div class=\"wizard\"&gt;\n            &lt;div class=\"wizard-inner\"&gt;\n                &lt;div class=\"connecting-line\"&gt;&lt;\/div&gt;\n                &lt;ul class=\"nav nav-tabs\" role=\"tablist\"&gt;\n\n                    &lt;li role=\"presentation\" class=\"active\"&gt;\n                        &lt;a href=\"#step1\" data-toggle=\"tab\" aria-controls=\"step1\" role=\"tab\" title=\"Step 1\"&gt;\n                            &lt;span class=\"round-tab\"&gt;\n                                &lt;i class=\"glyphicon glyphicon-folder-open\"&gt;&lt;\/i&gt;\n                            &lt;\/span&gt;\n                        &lt;\/a&gt;\n                    &lt;\/li&gt;\n\n                    &lt;li role=\"presentation\" class=\"disabled\"&gt;\n                        &lt;a href=\"#step2\" data-toggle=\"tab\" aria-controls=\"step2\" role=\"tab\" title=\"Step 2\"&gt;\n                            &lt;span class=\"round-tab\"&gt;\n                                &lt;i class=\"glyphicon glyphicon-pencil\"&gt;&lt;\/i&gt;\n                            &lt;\/span&gt;\n                        &lt;\/a&gt;\n                    &lt;\/li&gt;\n                    &lt;li role=\"presentation\" class=\"disabled\"&gt;\n                        &lt;a href=\"#step3\" data-toggle=\"tab\" aria-controls=\"step3\" role=\"tab\" title=\"Step 3\"&gt;\n                            &lt;span class=\"round-tab\"&gt;\n                                &lt;i class=\"glyphicon glyphicon-picture\"&gt;&lt;\/i&gt;\n                            &lt;\/span&gt;\n                        &lt;\/a&gt;\n                    &lt;\/li&gt;\n\n                    &lt;li role=\"presentation\" class=\"disabled\"&gt;\n                        &lt;a href=\"#complete\" data-toggle=\"tab\" aria-controls=\"complete\" role=\"tab\" title=\"Complete\"&gt;\n                            &lt;span class=\"round-tab\"&gt;\n                                &lt;i class=\"glyphicon glyphicon-ok\"&gt;&lt;\/i&gt;\n                            &lt;\/span&gt;\n                        &lt;\/a&gt;\n                    &lt;\/li&gt;\n                &lt;\/ul&gt;\n            &lt;\/div&gt;\n\n            &lt;form role=\"form\"&gt;\n                &lt;div class=\"tab-content\"&gt;\n                    &lt;div class=\"tab-pane active\" role=\"tabpanel\" id=\"step1\"&gt;\n                        &lt;h3&gt;Step 1&lt;\/h3&gt;\n                        &lt;div class=\"bs-calltoaction bs-calltoaction-primary\"&gt;\n                    &lt;div class=\"row\"&gt;\n                        &lt;div class=\"col-md-9 cta-contents\"&gt;\n                            &lt;h1 class=\"cta-title\"&gt;Its a Call To Action&lt;\/h1&gt;\n                            &lt;div class=\"cta-desc\"&gt;\n                                &lt;p&gt;Describe the action here.&lt;\/p&gt;\n                                &lt;p&gt;Describe the action here.&lt;\/p&gt;\n                                &lt;p&gt;Describe the action here.&lt;\/p&gt;\n                            &lt;\/div&gt;\n                        &lt;\/div&gt;\n                      &lt;p&gt;Step - 1&lt;\/p&gt;\n                     &lt;\/div&gt;\n                &lt;\/div&gt;\n                        &lt;ul class=\"list-inline pull-right\"&gt;\n                            &lt;li&gt;&lt;button type=\"button\" class=\"btn btn-primary next-step\"&gt;Save and continue&lt;\/button&gt;&lt;\/li&gt;\n                        &lt;\/ul&gt;\n                    &lt;\/div&gt;\n                    &lt;div class=\"tab-pane\" role=\"tabpanel\" id=\"step2\"&gt;\n                        &lt;h3&gt;Step 2&lt;\/h3&gt;\n                        &lt;div class=\"bs-calltoaction bs-calltoaction-info\"&gt;\n                    &lt;div class=\"row\"&gt;\n                        &lt;div class=\"col-md-9 cta-contents\"&gt;\n                            &lt;h1 class=\"cta-title\"&gt;Its a Call To Action&lt;\/h1&gt;\n                            &lt;div class=\"cta-desc\"&gt;\n                                &lt;p&gt;Describe the action here.&lt;\/p&gt;\n                                &lt;p&gt;Describe the action here.&lt;\/p&gt;\n                                &lt;p&gt;Describe the action here.&lt;\/p&gt;\n                            &lt;\/div&gt;\n                        &lt;\/div&gt;\n                        &lt;div class=\"col-md-3 cta-button\"&gt;\n                            &lt;a href=\"#\" class=\"btn btn-lg btn-block btn-info\"&gt;Go for It!&lt;\/a&gt;\n                        &lt;\/div&gt;\n                     &lt;\/div&gt;\n                &lt;\/div&gt;\n                        &lt;ul class=\"list-inline pull-right\"&gt;\n                            &lt;li&gt;&lt;button type=\"button\" class=\"btn btn-default prev-step\"&gt;Previous&lt;\/button&gt;&lt;\/li&gt;\n                            &lt;li&gt;&lt;button type=\"button\" class=\"btn btn-primary next-step\"&gt;Save and continue&lt;\/button&gt;&lt;\/li&gt;\n                        &lt;\/ul&gt;\n                    &lt;\/div&gt;\n                    &lt;div class=\"tab-pane\" role=\"tabpanel\" id=\"step3\"&gt;\n                        &lt;h3&gt;Step 3&lt;\/h3&gt;\n                        &lt;div class=\"bs-calltoaction bs-calltoaction-success\"&gt;\n                    &lt;div class=\"row\"&gt;\n                        &lt;div class=\"col-md-9 cta-contents\"&gt;\n                            &lt;h1 class=\"cta-title\"&gt;Its a Call To Action&lt;\/h1&gt;\n                            &lt;div class=\"cta-desc\"&gt;\n                                &lt;p&gt;Describe the action here.&lt;\/p&gt;\n                                &lt;p&gt;Describe the action here.&lt;\/p&gt;\n                                &lt;p&gt;Describe the action here.&lt;\/p&gt;\n                            &lt;\/div&gt;\n                        &lt;\/div&gt;\n                        &lt;div class=\"col-md-3 cta-button\"&gt;\n                            &lt;a href=\"#\" class=\"btn btn-lg btn-block btn-success\"&gt;Go for It!&lt;\/a&gt;\n                        &lt;\/div&gt;\n                     &lt;\/div&gt;\n                &lt;\/div&gt;\n                        &lt;ul class=\"list-inline pull-right\"&gt;\n                            &lt;li&gt;&lt;button type=\"button\" class=\"btn btn-default prev-step\"&gt;Previous&lt;\/button&gt;&lt;\/li&gt;\n                            &lt;li&gt;&lt;button type=\"button\" class=\"btn btn-default next-step\"&gt;Skip&lt;\/button&gt;&lt;\/li&gt;\n                            &lt;li&gt;&lt;button type=\"button\" class=\"btn btn-primary btn-info-full next-step\"&gt;Save and continue&lt;\/button&gt;&lt;\/li&gt;\n                        &lt;\/ul&gt;\n                    &lt;\/div&gt;\n                    &lt;div class=\"tab-pane\" role=\"tabpanel\" id=\"complete\"&gt;\n                        &lt;h3&gt;Complete&lt;\/h3&gt;\n                        &lt;div class=\"container\"&gt;\n    &lt;blockquote class=\"quote-box\"&gt;\n      &lt;p class=\"quotation-mark\"&gt;\n        \u201c\n      &lt;\/p&gt;\n      &lt;p class=\"quote-text\"&gt;\n        Don't believe anything that you read on the internet, it may be fake. \n      &lt;\/p&gt;\n      &lt;hr&gt;\n      &lt;div class=\"blog-post-actions\"&gt;\n        &lt;p class=\"blog-post-bottom pull-left\"&gt;\n          Abraham Lincoln\n        &lt;\/p&gt;\n        &lt;p class=\"blog-post-bottom pull-right\"&gt;\n          &lt;span class=\"badge quote-badge\"&gt;896&lt;\/span&gt;\u00a0\u00a0&#x2764;\n        &lt;\/p&gt;\n      &lt;\/div&gt;\n    &lt;\/blockquote&gt;\n&lt;\/div&gt;\n                    &lt;\/div&gt;\n                    &lt;div class=\"clearfix\"&gt;&lt;\/div&gt;\n                &lt;\/div&gt;\n            &lt;\/form&gt;\n        &lt;\/div&gt;\n    &lt;\/section&gt;\n   &lt;\/div&gt;\n&lt;\/div&gt;<\/pre>\n<p>3. Apply the necessary CSS styles to style the wizard, progress bar, and buttons. Use the provided CSS classes to achieve the desired look.<\/p>\n<pre class=\"prettyprint linenums lang-css\">.wizard {\n    margin: 20px auto;\n    background: #fff;\n}\n\n    .wizard .nav-tabs {\n        position: relative;\n        margin: 40px auto;\n        margin-bottom: 0;\n        border-bottom-color: #e0e0e0;\n    }\n\n    .wizard &gt; div.wizard-inner {\n        position: relative;\n    }\n\n.connecting-line {\n    height: 2px;\n    background: #e0e0e0;\n    position: absolute;\n    width: 80%;\n    margin: 0 auto;\n    left: 0;\n    right: 0;\n    top: 50%;\n    z-index: 1;\n}\n\n.wizard .nav-tabs &gt; li.active &gt; a, .wizard .nav-tabs &gt; li.active &gt; a:hover, .wizard .nav-tabs &gt; li.active &gt; a:focus {\n    color: #555555;\n    cursor: default;\n    border: 0;\n    border-bottom-color: transparent;\n}\n\nspan.round-tab {\n    width: 70px;\n    height: 70px;\n    line-height: 70px;\n    display: inline-block;\n    border-radius: 100px;\n    background: #fff;\n    border: 2px solid #e0e0e0;\n    z-index: 2;\n    position: absolute;\n    left: 0;\n    text-align: center;\n    font-size: 25px;\n}\nspan.round-tab i{\n    color:#555555;\n}\n.wizard li.active span.round-tab {\n    background: #fff;\n    border: 2px solid #5bc0de;\n    \n}\n.wizard li.active span.round-tab i{\n    color: #5bc0de;\n}\n\nspan.round-tab:hover {\n    color: #333;\n    border: 2px solid #333;\n}\n\n.wizard .nav-tabs &gt; li {\n    width: 25%;\n}\n\n.wizard li:after {\n    content: \" \";\n    position: absolute;\n    left: 46%;\n    opacity: 0;\n    margin: 0 auto;\n    bottom: 0px;\n    border: 5px solid transparent;\n    border-bottom-color: #5bc0de;\n    transition: 0.1s ease-in-out;\n}\n\n.wizard li.active:after {\n    content: \" \";\n    position: absolute;\n    left: 46%;\n    opacity: 1;\n    margin: 0 auto;\n    bottom: 0px;\n    border: 10px solid transparent;\n    border-bottom-color: #5bc0de;\n}\n\n.wizard .nav-tabs &gt; li a {\n    width: 70px;\n    height: 70px;\n    margin: 20px auto;\n    border-radius: 100%;\n    padding: 0;\n}\n\n    .wizard .nav-tabs &gt; li a:hover {\n        background: transparent;\n    }\n\n.wizard .tab-pane {\n    position: relative;\n    padding-top: 50px;\n}\n\n.wizard h3 {\n    margin-top: 0;\n}\n\n@media( max-width : 585px ) {\n\n    .wizard {\n        width: 90%;\n        height: auto !important;\n    }\n\n    span.round-tab {\n        font-size: 16px;\n        width: 50px;\n        height: 50px;\n        line-height: 50px;\n    }\n\n    .wizard .nav-tabs &gt; li a {\n        width: 50px;\n        height: 50px;\n        line-height: 50px;\n    }\n\n    .wizard li.active:after {\n        content: \" \";\n        position: absolute;\n        left: 35%;\n    }\n}\n.bs-calltoaction{\n    position: relative;\n    width:auto;\n    padding: 15px 25px;\n    border: 1px solid black;\n    margin-top: 10px;\n    margin-bottom: 10px;\n    border-radius: 5px;\n}\n\n    .bs-calltoaction &gt; .row{\n        display:table;\n        width: calc(100% + 30px);\n    }\n     \n        .bs-calltoaction &gt; .row &gt; [class^=\"col-\"],\n        .bs-calltoaction &gt; .row &gt; [class*=\" col-\"]{\n            float:none;\n            display:table-cell;\n            vertical-align:middle;\n        }\n\n            .cta-contents{\n                padding-top: 10px;\n                padding-bottom: 10px;\n            }\n\n                .cta-title{\n                    margin: 0 auto 15px;\n                    padding: 0;\n                }\n\n                .cta-desc{\n                    padding: 0;\n                }\n\n                .cta-desc p:last-child{\n                    margin-bottom: 0;\n                }\n\n            .cta-button{\n                padding-top: 10px;\n                padding-bottom: 10px;\n            }\n\n@media (max-width: 991px){\n    .bs-calltoaction &gt; .row{\n        display:block;\n        width: auto;\n    }\n\n        .bs-calltoaction &gt; .row &gt; [class^=\"col-\"],\n        .bs-calltoaction &gt; .row &gt; [class*=\" col-\"]{\n            float:none;\n            display:block;\n            vertical-align:middle;\n            position: relative;\n        }\n\n        .cta-contents{\n            text-align: center;\n        }\n}\n\n\n\n.bs-calltoaction.bs-calltoaction-default{\n    color: #333;\n    background-color: #fff;\n    border-color: #ccc;\n}\n\n.bs-calltoaction.bs-calltoaction-primary{\n    color: #fff;\n    background-color: #337ab7;\n    border-color: #2e6da4;\n}\n\n.bs-calltoaction.bs-calltoaction-info{\n    color: #fff;\n    background-color: #5bc0de;\n    border-color: #46b8da;\n}\n\n.bs-calltoaction.bs-calltoaction-success{\n    color: #fff;\n    background-color: #5cb85c;\n    border-color: #4cae4c;\n}\n\n.bs-calltoaction.bs-calltoaction-warning{\n    color: #fff;\n    background-color: #f0ad4e;\n    border-color: #eea236;\n}\n\n.bs-calltoaction.bs-calltoaction-danger{\n    color: #fff;\n    background-color: #d9534f;\n    border-color: #d43f3a;\n}\n\n.bs-calltoaction.bs-calltoaction-primary .cta-button .btn,\n.bs-calltoaction.bs-calltoaction-info .cta-button .btn,\n.bs-calltoaction.bs-calltoaction-success .cta-button .btn,\n.bs-calltoaction.bs-calltoaction-warning .cta-button .btn,\n.bs-calltoaction.bs-calltoaction-danger .cta-button .btn{\n    border-color:#fff;\n}\n\nblockquote{\n    border-left:none\n}\n\n.quote-badge{\n    background-color: rgba(0, 0, 0, 0.2);   \n}\n\n.quote-box{\n    \n    overflow: hidden;\n    margin-top: -50px;\n    padding-top: -100px;\n    border-radius: 17px;\n    background-color: #4ADFCC;\n    margin-top: 25px;\n    color:white;\n    width: 325px;\n    box-shadow: 2px 2px 2px 2px #E0E0E0;\n    \n}\n\n.quotation-mark{\n    \n    margin-top: -10px;\n    font-weight: bold;\n    font-size:100px;\n    color:white;\n    font-family: \"Times New Roman\", Georgia, Serif;\n    \n}\n\n.quote-text{\n    \n    font-size: 19px;\n    margin-top: -65px;\n}<\/pre>\n<p>4. Now, add the<a href=\"https:\/\/jquery.com\" target=\"_blank\" rel=\"noopener\"> jQuery<\/a> library and Bootstrap JS script at the end of the body tag to enable interactive functionality:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;script src='https:\/\/code.jquery.com\/jquery-2.2.4.min.js'&gt;&lt;\/script&gt;\n&lt;script src='https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.3.6\/js\/bootstrap.min.js'&gt;&lt;\/script&gt;\n<\/pre>\n<p>5. Finally, add the following JavaScript function to handle tab navigation, enabling users to move to the next or previous steps.<\/p>\n<pre class=\"prettyprint linenums lang-js\">$(document).ready(function () {\n    \/\/Initialize tooltips\n    $('.nav-tabs &gt; li a[title]').tooltip();\n    \n    \/\/Wizard\n    $('a[data-toggle=\"tab\"]').on('show.bs.tab', function (e) {\n\n        var $target = $(e.target);\n    \n        if ($target.parent().hasClass('disabled')) {\n            return false;\n        }\n    });\n\n    $(\".next-step\").click(function (e) {\n\n        var $active = $('.wizard .nav-tabs li.active');\n        $active.next().removeClass('disabled');\n        nextTab($active);\n\n    });\n    $(\".prev-step\").click(function (e) {\n\n        var $active = $('.wizard .nav-tabs li.active');\n        prevTab($active);\n\n    });\n});\n\nfunction nextTab(elem) {\n    $(elem).next().find('a[data-toggle=\"tab\"]').click();\n}\nfunction prevTab(elem) {\n    $(elem).prev().find('a[data-toggle=\"tab\"]').click();\n}<\/pre>\n<p>That&#8217;s it! You have successfully created your Bootstrap Multi-Step Wizard With Progress Bar. Feel free to customize it to match your website&#8217;s design and requirements. If you have any questions or suggestions, please don&#8217;t hesitate to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code snippet allows you to create a dynamic multi-step form wizard, where each step is visually represented as a&#8230;<\/p>\n","protected":false},"author":1,"featured_media":8346,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[123],"tags":[],"class_list":["post-8338","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bootstrap"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Bootstrap Multi Step Wizard With Progress Bar &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free Bootstrap Multi Step Wizard With Progress Bar code snippet. You can view demo and download source code.\" \/>\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\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bootstrap Multi Step Wizard With Progress Bar &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free Bootstrap Multi Step Wizard With Progress Bar code snippet. You can view demo and download source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/\" \/>\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-11T17:50:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:51:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Bootstrap-Multi-Step-Wizard-With-Progress-Bar.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Bootstrap Multi Step Wizard With Progress Bar\",\"datePublished\":\"2024-01-11T17:50:00+00:00\",\"dateModified\":\"2024-01-22T10:51:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/\"},\"wordCount\":243,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Bootstrap-Multi-Step-Wizard-With-Progress-Bar.png\",\"articleSection\":[\"Bootstrap\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/\",\"url\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/\",\"name\":\"Bootstrap Multi Step Wizard With Progress Bar &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Bootstrap-Multi-Step-Wizard-With-Progress-Bar.png\",\"datePublished\":\"2024-01-11T17:50:00+00:00\",\"dateModified\":\"2024-01-22T10:51:34+00:00\",\"description\":\"Here is a free Bootstrap Multi Step Wizard With Progress Bar code snippet. You can view demo and download source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Bootstrap-Multi-Step-Wizard-With-Progress-Bar.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Bootstrap-Multi-Step-Wizard-With-Progress-Bar.png\",\"width\":1280,\"height\":960,\"caption\":\"Bootstrap Multi Step Wizard With Progress Bar\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bootstrap\",\"item\":\"https:\/\/codehim.com\/category\/bootstrap\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Bootstrap Multi Step Wizard With Progress Bar\"}]},{\"@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":"Bootstrap Multi Step Wizard With Progress Bar &#8212; CodeHim","description":"Here is a free Bootstrap Multi Step Wizard With Progress Bar code snippet. You can view demo and download source code.","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\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/","og_locale":"en_US","og_type":"article","og_title":"Bootstrap Multi Step Wizard With Progress Bar &#8212; CodeHim","og_description":"Here is a free Bootstrap Multi Step Wizard With Progress Bar code snippet. You can view demo and download source code.","og_url":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-11T17:50:00+00:00","article_modified_time":"2024-01-22T10:51:34+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Bootstrap-Multi-Step-Wizard-With-Progress-Bar.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Bootstrap Multi Step Wizard With Progress Bar","datePublished":"2024-01-11T17:50:00+00:00","dateModified":"2024-01-22T10:51:34+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/"},"wordCount":243,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Bootstrap-Multi-Step-Wizard-With-Progress-Bar.png","articleSection":["Bootstrap"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/","url":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/","name":"Bootstrap Multi Step Wizard With Progress Bar &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Bootstrap-Multi-Step-Wizard-With-Progress-Bar.png","datePublished":"2024-01-11T17:50:00+00:00","dateModified":"2024-01-22T10:51:34+00:00","description":"Here is a free Bootstrap Multi Step Wizard With Progress Bar code snippet. You can view demo and download source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Bootstrap-Multi-Step-Wizard-With-Progress-Bar.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/07\/Bootstrap-Multi-Step-Wizard-With-Progress-Bar.png","width":1280,"height":960,"caption":"Bootstrap Multi Step Wizard With Progress Bar"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-multi-step-wizard-with-progress-bar\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Bootstrap","item":"https:\/\/codehim.com\/category\/bootstrap\/"},{"@type":"ListItem","position":3,"name":"Bootstrap Multi Step Wizard With Progress Bar"}]},{"@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":7689,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8338","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=8338"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8338\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/8346"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=8338"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=8338"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=8338"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}