{"id":17992,"date":"2017-08-07T11:00:00","date_gmt":"2017-08-07T08:00:00","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=17992"},"modified":"2018-01-08T13:05:47","modified_gmt":"2018-01-08T11:05:47","slug":"tutorial-learn-twitter-bootstrap-quickly","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/","title":{"rendered":"Tutorial: Learn Twitter Bootstrap Quickly"},"content":{"rendered":"<p>The aim of this tutorial is to get you up and running with Twitter Bootstrap framework quickly. Twitter Bootstrap has soared in popularity over the years and continues to be the go-to resource for front-end development. Let us explore the most common and frequently used components, features and css classes of this framework to get you up to speed.<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n&nbsp;<br \/>\n[ulp id=&#8217;57DHuNTHJ2qczaGz&#8217;]<br \/>\n&nbsp;<br \/>\nWe will also look at responsive web design and the fluid grid layout of Bootstrap.<\/p>\n<div class=\"toc\">\n<h3>Table of Content<\/h3>\n<dl>\n<dt><a href=\"#introduction\">1. Introduction<\/a><\/dt>\n<dd>\n<dl>\n<dt><a href=\"#responsivedesign\">1.1 Responsive Design<\/a><\/dt>\n<dt><a href=\"#gridlayout\">1.2 Grid Layout<\/a><\/dt>\n<dt><a href=\"#tools\">1.3 Tools<\/a><\/dt>\n<\/dl>\n<\/dd>\n<dt><a href=\"#gridsystem\">2. Grid Layout System<\/a><\/dt>\n<dt><a href=\"#css\">3. CSS Classes<\/a><\/dt>\n<dd>\n<dl>\n<dt><a href=\"#typography\">3.1 Typography &amp; Code CSS Classes<\/a><\/dt>\n<dt><a href=\"#htmlwidgets\">3.2 Html Widgets<\/a><\/dt>\n<dt><a href=\"#helperclasses\">3.3 Helper &amp; Utility Classes<\/a><\/dt>\n<\/dl>\n<\/dd>\n<dt><a href=\"#components\">4. Components<\/a><\/dt>\n<dt><a href=\"#download\">5. Download the Source Code<\/a><\/dt>\n<\/dl>\n<\/div>\n<h2><a name=\"introduction\"><\/a>1. Introduction<\/h2>\n<p>Bootstrap is a popular framework for developing responsive, mobile first front ends for web applications and websites. It owes its popularity in part to the speed of development possible when using Bootstrap. But the critical aspects are responsiveness and mobile first approach. Let us discuss each of these two terms and what is implied by them.<\/p>\n<h3><a name=\"responsivedesign\"><\/a>1.1 Responsive Design<\/h3>\n<p>A responsive UI is, one that is, able to detect the user&#8217;s screen size &amp; device orientation and adjust the layout of UI elements accordingly. To enable this, Bootstrap uses media queries. A media query is a CSS3 technique for applying a block of css rules if a condition is true.<\/p>\n<h3><a name=\"gridlayout\"><\/a>1.2 Grid Layout<\/h3>\n<p>The grid system applied by Bootstrap divides the layout into a grid with 12 columns in each row. We place our content in the columns of each row. As the screen width decreases so does the width of each column, till user specified breakpoint is reached and then the content starts to stack.<\/p>\n<h3><a name=\"tools\"><\/a>1.3 Tools<\/h3>\n<p>The tools used while working on this demo application are the followings:<br \/>\n1. <a href=\"http:\/\/getbootstrap.com\/getting-started\/\" target=\"_blank\" rel=\"noopener\">Bootstrap v3.3.7<\/a><br \/>\n2. <a href=\"https:\/\/blog.jquery.com\/2016\/05\/20\/jquery-1-12-4-and-2-2-4-released\/\" target=\"_blank\" rel=\"noopener\">JQuery v1.12.4<\/a><br \/>\n3. <a href=\"https:\/\/nodejs.org\/en\/download\/\" target=\"_blank\" rel=\"noopener\">Node.js v6.3.0<\/a><br \/>\n4. <a href=\"https:\/\/expressjs.com\/\" target=\"_blank\" rel=\"noopener\">Express<\/a><br \/>\n5. <a href=\"https:\/\/code.visualstudio.com\/download\" target=\"_blank\" rel=\"noopener\">Visual Studio Code IDE<\/a><\/p>\n<h2><a name=\"gridsystem\"><\/a>2. Grid Layout System<\/h2>\n<p>Let us see, through an example, how the fluid grid layout system of Bootstrap works. A clear understanding of the same will help us leverage it in any project.<\/p>\n<p>To create a grid layout we need to use the css classes <code>.container, .row, .col-<i>screen size<\/i>-<i>number of columns<\/i><\/code> and place our contents in the cells. So our basic grid would look like the below snippet:<\/p>\n<pre class=\"brush: html\">&lt;div class=\"container\"&gt;\r\n    &lt;div class=\"row\"&gt;\r\n        &lt;div class=\"col-md-3\"&gt;&lt;\/div&gt;\r\n...\r\n\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>In the grid created above, our content shall rest in one of <code>div<\/code> decorated with <code>col-*-*<\/code> classes. Take a close look at the css class on the innermost <code>div<\/code>, it has 3 components in its css class name. First implies that it is a column and the next <code>md<\/code> implies the break point or in other words at any screen size below <code>md<\/code> this column can be stacked. The third component &#8220;3&#8221; tells bootstrap that this column would span across 3 columns of the layout grid. One thing to note here, is that the sum of the number on all columns in a row must add up to 12, otherwise things can get awry leading to unexpected results. Lastly the below figure gives us an overview of the breakpoints used for the Fluid Grid Layout of Bootstrap.<\/p>\n<figure id=\"attachment_18164\" aria-describedby=\"caption-attachment-18164\" style=\"width: 750px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/Screen_Size_Class_Prefix.jpeg\"><img decoding=\"async\" class=\"size-full wp-image-18164\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/Screen_Size_Class_Prefix.jpeg\" alt=\"\" width=\"750\" height=\"171\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/Screen_Size_Class_Prefix.jpeg 750w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/Screen_Size_Class_Prefix-300x68.jpeg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" \/><\/a><figcaption id=\"caption-attachment-18164\" class=\"wp-caption-text\">Screen Size &#8212; CSS Class<\/figcaption><\/figure>\n<h2><a name=\"css\"><\/a>3. CSS Classes<\/h2>\n<p>The Bootstrap CSS library boasts of a large set of css classes to enable us to create impressive UIs really quickly. Let us take a look at some of the most used ones quickly. These classes can be classified into the following categories pointing to their purpose and intended use.<\/p>\n<h3><a name=\"typography\"><\/a>3.1 Typography &amp; Code CSS Classes<\/h3>\n<p>By typography we mean the visual aspect or the display style of written words. These classes do not alter the content itself but provide assistance and options to manipulate their visual rendering. Classes for Html headers from <code>h1...h6<\/code> are available which match text size yet the content itself appears inline. The font size is set to <code>14px<\/code> which is the default for the body. There are classes for showing text as deleted, strikethrough, inserted, underlined, capitalized, lowercase or uppercase, left-aligned, right-aligned, justified, without wrapping or marked style. A summary of these classes and their effects is displayed in the images below:<\/p>\n<figure id=\"attachment_18157\" aria-describedby=\"caption-attachment-18157\" style=\"width: 848px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/TypographyDemo.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18157\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/TypographyDemo.jpg\" alt=\"\" width=\"848\" height=\"509\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/TypographyDemo.jpg 848w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/TypographyDemo-300x180.jpg 300w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/TypographyDemo-768x461.jpg 768w\" sizes=\"(max-width: 848px) 100vw, 848px\" \/><\/a><figcaption id=\"caption-attachment-18157\" class=\"wp-caption-text\">Typography Demo<\/figcaption><\/figure>\n<p>Classes are available and allow us to display text as computer program snippets or keyboard shortcuts. A summary of such classes is provided in the screenshot below:<\/p>\n<figure id=\"attachment_18073\" aria-describedby=\"caption-attachment-18073\" style=\"width: 835px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/CodeClassesDemo.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18073\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/CodeClassesDemo.jpg\" alt=\"\" width=\"835\" height=\"552\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/CodeClassesDemo.jpg 835w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/CodeClassesDemo-300x198.jpg 300w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/CodeClassesDemo-768x508.jpg 768w\" sizes=\"(max-width: 835px) 100vw, 835px\" \/><\/a><figcaption id=\"caption-attachment-18073\" class=\"wp-caption-text\">Code CSS Classes<\/figcaption><\/figure>\n<p>The Html markup for the above looks like below:<\/p>\n<p><span style=\"text-decoration: underline;\"><em>index.html<\/em><\/span><\/p>\n<pre class=\"brush: html;\">...\r\n&lt;div class=\"container\"&gt;\r\n    &lt;div class=\"row\"&gt;\r\n        &lt;div class=\"col-md-6\"&gt;\r\n            &lt;div class=\"panel panel-info\"&gt;\r\n                &lt;div class=\"panel-heading\"&gt;\r\n                    Heading Classes\r\n                &lt;\/div&gt;\r\n                &lt;div class=\"panel-body\"&gt;\r\n                    &lt;div class=\"h1\"&gt;h1 Heading&lt;\/div&gt;\r\n                    &lt;div class=\"h2\"&gt;h2 Heading&lt;\/div&gt;\r\n                    &lt;div class=\"h3\"&gt;h3 Heading&lt;\/div&gt;\r\n                    &lt;div class=\"h4\"&gt;h4 Heading&lt;\/div&gt;\r\n                    &lt;div class=\"h5\"&gt;h5 Heading&lt;\/div&gt;\r\n                    &lt;div class=\"h6\"&gt;h6 Heading&lt;\/div&gt;\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n    &lt;div class=\"col-md-6\"&gt;\r\n        &lt;div class=\"panel panel-info\"&gt;\r\n            &lt;div class=\"panel-heading\"&gt;More Typography Classes&lt;\/div&gt;\r\n            &lt;div class=\"panel-body\"&gt;\r\n                &lt;div class=\"container\"&gt;\r\n                    &lt;div class=\"row\"&gt;\r\n                        This is a &lt;mark&gt;marked&lt;\/mark&gt; text.\r\n                    &lt;\/div&gt;\r\n                    &lt;div class=\"row\"&gt;\r\n                        This text appears &lt;del&gt;deleted&lt;\/del&gt;.\r\n                    &lt;\/div&gt;\r\n                    &lt;div class=\"row\"&gt;\r\n                        This is a &lt;sk&gt;strikethrough&lt;\/s&gt; text.\r\n                    &lt;\/div&gt;\r\n                    &lt;div class=\"row\"&gt;\r\n                        This is a &lt;ins&gt;inserted&lt;\/ins&gt; text.\r\n                    &lt;\/div&gt;\r\n                    &lt;div class=\"row\"&gt;\r\n                        This is &lt;u&gt;underlined&lt;\/u&gt; text.\r\n                    &lt;\/div&gt;\r\n                    &lt;div class=\"row\"&gt;\r\n                        This is a &lt;small&gt;small&lt;\/small&gt; text.\r\n                    &lt;\/div&gt;\r\n                    &lt;div class=\"row\"&gt;\r\n                        This is &lt;em&gt;italic&lt;\/em&gt; text.\r\n                    &lt;\/div&gt;\r\n                    &lt;div class=\"row\"&gt;\r\n                        This is &lt;strong&gt;bold&lt;\/strong&gt; text.\r\n                    &lt;\/div&gt;\r\n                    &lt;div class=\"row\"&gt;\r\n                        &lt;p class=\"text-uppercase\"&gt;This is effect of .text-upperclass class&lt;\/p&gt;\r\n                    &lt;\/div&gt;\r\n                    &lt;div class=\"row\"&gt;\r\n                        &lt;p class=\"text-lowercase\"&gt;This is effect of .text-lowercase class&lt;\/p&gt;\r\n                    &lt;\/div&gt;\r\n                    &lt;div class=\"row\"&gt;\r\n                        &lt;p class=\"text-capitalize\"&gt;This is how .text-capitalize works&lt;\/p&gt;\r\n                    &lt;\/div&gt;\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"row\"&gt;\r\n    &lt;div class=\"col-md-6\"&gt;\r\n        &lt;div class=\"panel panel-info\"&gt;\r\n            &lt;div class=\"panel-heading\"&gt;More Typography Classes&lt;\/div&gt;\r\n                &lt;div class=\"panel-body\"&gt;\r\n\r\n                    &lt;p class=\"text-left\"&gt;This is the effect of .text-left class&lt;\/p&gt;\r\n\r\n                    &lt;p class=\"text-right\"&gt; This is the effect of .text-right class&lt;\/p&gt;\r\n\r\n                    &lt;p class=\"text-center\"&gt;This is the effect of .text-center class&lt;\/p&gt;\r\n\r\n                    &lt;p class=\"text-justify\"&gt;This is the effect of .text-justify class&lt;\/p&gt;\r\n\r\n                    &lt;p class=\"text-nowrap\"&gt;This is the effect of .text-nowrap Class&lt;\/p&gt;\r\n\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"col-md-6\"&gt;\r\n            &lt;div class=\"panel panel-info\"&gt;\r\n                &lt;div class=\"panel-heading\"&gt;More Typography Classes&lt;\/div&gt;\r\n                    &lt;div class=\"panel-body\"&gt;\r\n                        &lt;abbr title=\"Ordered Lists\"&gt;Lists Ord.&lt;\/abbr&gt;\r\n                        &lt;ul&gt;\r\n                            &lt;li&gt;One&lt;\/li&gt;\r\n                            &lt;li&gt;Two&lt;\/li&gt;\r\n                            &lt;li&gt;Three&lt;\/li&gt;\r\n                        &lt;\/ul&gt;\r\n                        &lt;abbr title=\"Unordered Lists\"&gt;Lists Un.&lt;\/abbr&gt;\r\n                        &lt;ol&gt;\r\n                            &lt;li&gt;One&lt;\/li&gt;\r\n                            &lt;li&gt;Two&lt;\/li&gt;\r\n                            &lt;li&gt;Three&lt;\/li&gt;\r\n                        &lt;\/ol&gt;\r\n                    &lt;\/div&gt;\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"row\"&gt;\r\n            &lt;div class=\"col-md-6\"&gt;\r\n                &lt;div class=\"panel panel-info\"&gt;\r\n                     &lt;div class=\"panel-heading\"&gt;Code CSS Classes&lt;\/div&gt;\r\n                     &lt;div class=\"panel-body\"&gt;\r\n&lt;pre&gt;\r\nThis is a demonstration of the code Classes\r\nusing which we can display code inline with the\r\ncode tags like so.&lt;\/pre&gt;\r\n&lt;code&gt;int i = 0;&lt;\/code&gt;\r\n&lt;pre&gt;\r\nAdditionally we can show keyboard shortcuts with the kbd tags\r\nas in\r\nUse &lt;\/pre&gt;&lt;kbd&gt;Ctrl+c&lt;\/kbd&gt;&lt;pre&gt; to copy\r\nTo show the use of variables we can write so&lt;\/pre&gt;\r\n&lt;var&gt;y&lt;\/var&gt; = &lt;var&gt;x&lt;\/var&gt; + 5\r\n&lt;pre&gt;Sample output can be shown using samp tags&lt;\/pre&gt;\r\n&lt;samp&gt;The square of 2 is 4&lt;\/samp&gt;\r\n&lt;pre&gt;This entire section has been wrapped in pre tag to\r\nindicate that it is pre formatted text.\r\n&lt;\/pre&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n...\r\n<\/pre>\n<h3><a name=\"htmlwidgets\"><\/a>3.2 Html widgets<\/h3>\n<p>Bootstrap provides a whole host of stylized versions of the simple Table, Form, Button, Image tags in Html.<br \/>\nThe below screenshot demonstrates these tags and the possibilities that Bootstrap can make happen with very little effort. The first couple of Screenshots demonstrate the different table styles including Simple, Striped, Bordered, Condensed using classes <code>.table, .table.table-striped, .table.table-bordered, .table.table-condensed<\/code> respectively.<\/p>\n<figure id=\"attachment_18155\" aria-describedby=\"caption-attachment-18155\" style=\"width: 848px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/TableDemo.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18155\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/TableDemo.jpg\" alt=\"\" width=\"848\" height=\"528\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/TableDemo.jpg 848w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/TableDemo-300x187.jpg 300w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/TableDemo-768x478.jpg 768w\" sizes=\"(max-width: 848px) 100vw, 848px\" \/><\/a><figcaption id=\"caption-attachment-18155\" class=\"wp-caption-text\">Html Widgets &#8212; Table Demo 1<\/figcaption><\/figure>\n<figure id=\"attachment_18078\" aria-describedby=\"caption-attachment-18078\" style=\"width: 852px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/TableDemo.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18078\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/TableDemo.jpg\" alt=\"\" width=\"852\" height=\"530\" \/><\/a><figcaption id=\"caption-attachment-18078\" class=\"wp-caption-text\">Html Widgets &#8212; Table Demo 2<\/figcaption><\/figure>\n<p>We can leverage the Forms classes to layout forms and their controls in various fashion as per our need. Some examples of how the <code>.form, .form-inline, .form-horizontal<\/code> CSS classes for forms and <code>.form-group, .form-control<\/code> CSS classes for contained controls work is displayed in the screenshots below:<\/p>\n<figure id=\"attachment_18152\" aria-describedby=\"caption-attachment-18152\" style=\"width: 848px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/FormControlDemo.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18152\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/FormControlDemo.jpg\" alt=\"\" width=\"848\" height=\"285\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/FormControlDemo.jpg 848w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/FormControlDemo-300x101.jpg 300w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/FormControlDemo-768x258.jpg 768w\" sizes=\"(max-width: 848px) 100vw, 848px\" \/><\/a><figcaption id=\"caption-attachment-18152\" class=\"wp-caption-text\">Html Widgets &#8212; Form Controls 1<\/figcaption><\/figure>\n<figure id=\"attachment_18150\" aria-describedby=\"caption-attachment-18150\" style=\"width: 848px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/FormDemo-2.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18150\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/FormDemo-2.jpg\" alt=\"\" width=\"848\" height=\"225\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/FormDemo-2.jpg 848w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/FormDemo-2-300x80.jpg 300w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/FormDemo-2-768x204.jpg 768w\" sizes=\"(max-width: 848px) 100vw, 848px\" \/><\/a><figcaption id=\"caption-attachment-18150\" class=\"wp-caption-text\">Html Widgets &#8211; Form Controls 2<\/figcaption><\/figure>\n<p>The Html markup for the above looks as below:<\/p>\n<p><span style=\"text-decoration: underline;\"><em>index.html<\/em><\/span><\/p>\n<pre class=\"brush:html;\">...\r\n&lt;div class=\"col-md-6\"&gt;\r\n    &lt;div class=\"panel panel-info\"&gt;\r\n        &lt;div class=\"panel-heading\"&gt;Html Widgets\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"panel-body\"&gt;\r\n\r\n            &lt;table class=\"table\"&gt;\r\n                &lt;caption&gt;Example of a Basic Table decorated with .table class&lt;\/caption&gt;\r\n                &lt;thead&gt;\r\n                    &lt;tr&gt;&lt;th&gt;Serial #&lt;\/th&gt;\r\n&lt;th&gt;Planet Name&lt;\/th&gt;&lt;th&gt;Number of Moons&lt;\/th&gt;&lt;\/tr&gt;\r\n                &lt;\/thead&gt;\r\n                &lt;tbody&gt;\r\n                    &lt;tr&gt;&lt;td&gt;1&lt;\/td&gt;&lt;td&gt;Mercury&lt;\/td&gt;&lt;td&gt;0&lt;\/td&gt;&lt;\/tr&gt;\r\n                    &lt;tr&gt;&lt;td&gt;2&lt;\/td&gt;&lt;td&gt;Venus&lt;\/td&gt;&lt;td&gt;0&lt;\/td&gt;&lt;\/tr&gt;\r\n                    &lt;tr&gt;&lt;td&gt;3&lt;\/td&gt;&lt;td&gt;Earth&lt;\/td&gt;&lt;td&gt;1&lt;\/td&gt;&lt;\/tr&gt;\r\n                    &lt;tr&gt;&lt;td&gt;4&lt;\/td&gt;&lt;td&gt;Mars&lt;\/td&gt;&lt;td&gt;2&lt;\/td&gt;&lt;\/tr&gt;\r\n                &lt;\/tbody&gt;\r\n            &lt;\/table&gt;\r\n            &lt;table class=\"table table-striped\"&gt;\r\n                &lt;caption&gt;Example of a Basic Table decorated with .table.table-striped class&lt;\/caption&gt;\r\n                &lt;thead&gt;\r\n                    &lt;tr&gt;&lt;th&gt;Serial #&lt;\/th&gt;\r\n&lt;th&gt;Planet Name&lt;\/th&gt;&lt;th&gt;Number of Moons&lt;\/th&gt;&lt;\/tr&gt;\r\n                &lt;\/thead&gt;\r\n                &lt;tbody&gt;\r\n                    &lt;tr&gt;&lt;td&gt;1&lt;\/td&gt;&lt;td&gt;Mercury&lt;\/td&gt;&lt;td&gt;0&lt;\/td&gt;&lt;\/tr&gt;\r\n                    &lt;tr&gt;&lt;td&gt;2&lt;\/td&gt;&lt;td&gt;Venus&lt;\/td&gt;&lt;td&gt;0&lt;\/td&gt;&lt;\/tr&gt;\r\n                    &lt;tr&gt;&lt;td&gt;3&lt;\/td&gt;&lt;td&gt;Earth&lt;\/td&gt;&lt;td&gt;1&lt;\/td&gt;&lt;\/tr&gt;\r\n\r\n                &lt;\/tbody&gt;\r\n            &lt;\/table&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"row\"&gt;\r\n    &lt;div class=\"col-md-6\"&gt;\r\n        &lt;div class=\"panel panel-info\"&gt;\r\n            &lt;div class=\"panel-heading\"&gt;Html Widgets\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"panel-body\"&gt;\r\n\r\n            &lt;table class=\"table table-bordered\"&gt;\r\n                &lt;caption&gt;Example of a Table decorated with .table.table-bordered class&lt;\/caption&gt;\r\n                &lt;thead&gt;\r\n                    &lt;tr&gt;&lt;th&gt;Serial #&lt;\/th&gt;\r\n&lt;th&gt;Planet Name&lt;\/th&gt;&lt;th&gt;Number of Moons&lt;\/th&gt;&lt;\/tr&gt;\r\n                &lt;\/thead&gt;\r\n                &lt;tbody&gt;\r\n                    &lt;tr&gt;&lt;td&gt;1&lt;\/td&gt;&lt;td&gt;Mercury&lt;\/td&gt;&lt;td&gt;0&lt;\/td&gt;&lt;\/tr&gt;\r\n                    &lt;tr&gt;&lt;td&gt;2&lt;\/td&gt;&lt;td&gt;Venus&lt;\/td&gt;&lt;td&gt;0&lt;\/td&gt;&lt;\/tr&gt;\r\n                    &lt;tr&gt;&lt;td&gt;3&lt;\/td&gt;&lt;td&gt;Earth&lt;\/td&gt;&lt;td&gt;1&lt;\/td&gt;&lt;\/tr&gt;\r\n                    &lt;tr&gt;&lt;td&gt;4&lt;\/td&gt;&lt;td&gt;Mars&lt;\/td&gt;&lt;td&gt;2&lt;\/td&gt;&lt;\/tr&gt;\r\n                &lt;\/tbody&gt;\r\n            &lt;\/table&gt;\r\n            &lt;table class=\"table table-condensed\"&gt;\r\n                &lt;caption&gt;Example of a Basic Table decorated with .table.table-condensed class&lt;\/caption&gt;\r\n                &lt;thead&gt;\r\n                    &lt;tr&gt;&lt;th&gt;Serial #&lt;\/th&gt;\r\n&lt;th&gt;Planet Name&lt;\/th&gt;&lt;th&gt;Number of Moons&lt;\/th&gt;&lt;\/tr&gt;\r\n                &lt;\/thead&gt;\r\n                &lt;tbody&gt;\r\n                    &lt;tr&gt;&lt;td&gt;1&lt;\/td&gt;&lt;td&gt;Mercury&lt;\/td&gt;&lt;td&gt;0&lt;\/td&gt;&lt;\/tr&gt;\r\n                    &lt;tr&gt;&lt;td&gt;2&lt;\/td&gt;&lt;td&gt;Venus&lt;\/td&gt;&lt;td&gt;0&lt;\/td&gt;&lt;\/tr&gt;\r\n                    &lt;tr&gt;&lt;td&gt;3&lt;\/td&gt;&lt;td&gt;Earth&lt;\/td&gt;&lt;td&gt;1&lt;\/td&gt;&lt;\/tr&gt;\r\n\r\n                &lt;\/tbody&gt;\r\n            &lt;\/table&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"col-md-6\"&gt;\r\n    &lt;div class=\"panel panel-info\"&gt;\r\n        &lt;div class=\"panel-heading\"&gt;Form Controls -- Simple Form\r\n    &lt;\/div&gt;\r\n    &lt;div class=\"panel-body\"&gt;\r\n        &lt;form class=\"form\"&gt;\r\n            &lt;div class=\"form-group\"&gt;\r\n                &lt;label for=\"username\"&gt;Email\/Mobile No.&lt;\/label&gt;\r\n                &lt;input type=\"text\" class=\"form-control\" id=\"username\" placeholder=\"Enter Username\" \/&gt;\r\n            &lt;\/div&gt;\r\n            &lt;div class=\"form-group\"&gt;\r\n                &lt;label for=\"password\"&gt;Password&lt;\/label&gt;\r\n                &lt;input type=\"password\" class=\"form-control\" id=\"password\" placeholder=\"Enter Password\" \/&gt;\r\n            &lt;\/div&gt;\r\n            &lt;button class=\"btn btn-danger\"&gt;Cancel&lt;\/button&gt;\r\n            &lt;input class=\"btn btn-success\" type=\"submit\" value=\"Submit\" \/&gt;\r\n\r\n\r\n        &lt;\/form&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"row\"&gt;\r\n    &lt;div class=\"col-md-12\"&gt;\r\n        &lt;div class=\"panel panel-info\"&gt;\r\n            &lt;div class=\"panel-heading\"&gt;Inline Form for screen size till 768px&lt;\/div&gt;\r\n            &lt;div class=\"panel-body\"&gt;\r\n                &lt;form class=\"form-inline\"&gt;\r\n                    &lt;div class=\"form-group\"&gt;\r\n                        &lt;label for=\"username\"&gt;Email\/Mobile No.&lt;\/label&gt;\r\n                        &lt;input type=\"text\" class=\"form-control\" id=\"username\" placeholder=\"Enter Username\" \/&gt;\r\n                        &lt;label for=\"password\"&gt;Password&lt;\/label&gt;\r\n                        &lt;input type=\"password\" class=\"form-control\" id=\"password\" placeholder=\"Enter Password\" \/&gt;\r\n                    &lt;\/div&gt;\r\n                    &lt;button class=\"btn btn-danger\"&gt;Cancel&lt;\/button&gt;\r\n                    &lt;input class=\"btn btn-success\" type=\"submit\" value=\"Submit\" \/&gt;\r\n\r\n\r\n                 &lt;\/form&gt;\r\n             &lt;\/div&gt;\r\n         &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"row\"&gt;\r\n    &lt;div class=\"col-md-12\"&gt;\r\n        &lt;div class=\"panel panel-info\"&gt;\r\n            &lt;div class=\"panel-heading\"&gt;Horizontal form decorated with .form-horizontal class\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"panel-body\"&gt;\r\n            &lt;form class=\"form-horizontal\"&gt;\r\n                &lt;div class=\"form-group\"&gt;\r\n                    &lt;label for=\"username\" class=\"control-label col-sm-2\"&gt;Email\/Mobile No.&lt;\/label&gt;\r\n                    &lt;div class=\"col-sm-10\"&gt;\r\n                        &lt;input type=\"text\" class=\"form-control\" id=\"username\" placeholder=\"Enter Username\" \/&gt;\r\n                    &lt;\/div&gt;\r\n                &lt;\/div&gt;\r\n                &lt;div class=\"form-group\"&gt;\r\n                    &lt;label for=\"password\" class=\"control-label col-sm-2\"&gt;Password&lt;\/label&gt;\r\n                        &lt;div class=\"col-sm-10\"&gt;\r\n                            &lt;input type=\"password\" class=\"form-control\" id=\"password\" placeholder=\"Enter Password\" \/&gt;\r\n                        &lt;\/div&gt;\r\n                    &lt;\/div&gt;\r\n                    &lt;button class=\"btn btn-danger\"&gt;Cancel&lt;\/button&gt;\r\n                    &lt;input class=\"btn btn-success\" type=\"submit\" value=\"Submit\" \/&gt;\r\n\r\n\r\n                &lt;\/form&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n...\r\n<\/pre>\n<h3><a name=\"helperclasses\"><\/a>3.3 Helper &amp; Utility Classes<\/h3>\n<p>Bootstrap provides quite a few CSS classes that help with displaying text in different colors to indicate the context of the text like if it is a warning message or just information that needs attention etc. Not only this, there are classes to color the entire background with contextual colors, as they are called. Then there are classes to fix issues with the grid layout system or to customize it further, like classes to pull or push columns by a few places. These classes are demonstrated in the screenshots below.<\/p>\n<figure id=\"attachment_18148\" aria-describedby=\"caption-attachment-18148\" style=\"width: 848px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/ContextualColors.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18148\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/ContextualColors.jpg\" alt=\"\" width=\"848\" height=\"349\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/ContextualColors.jpg 848w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/ContextualColors-300x123.jpg 300w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/08\/ContextualColors-768x316.jpg 768w\" sizes=\"(max-width: 848px) 100vw, 848px\" \/><\/a><figcaption id=\"caption-attachment-18148\" class=\"wp-caption-text\">Contextual Colors<\/figcaption><\/figure>\n<p>The Html markup for the above is a follows:<\/p>\n<p><span style=\"text-decoration: underline;\"><em>index.html<\/em><\/span><\/p>\n<pre class=\"brush: html;\">...\r\n&lt;div class=\"col-md-6\"&gt;\r\n    &lt;div class=\"panel panel-info\"&gt;\r\n        &lt;div class=\"panel-heading\"&gt;\r\n            Helper Classes &amp; Utilities\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"panel-body\"&gt;\r\n            &lt;p&gt;This is a demo of the many contextual colors\r\n            provided by Bootstrap to communicate additional\r\n            context using colors as well.\r\n            &lt;\/p&gt;\r\n            &lt;p class=\"text-muted\"&gt;This is muted text.&lt;\/p&gt;\r\n            &lt;p class=\"text-success\"&gt;While this one indicates success&lt;\/p&gt;\r\n            &lt;p class=\"text-info\"&gt;This is what simple informational message looks like.&lt;\/p&gt;\r\n            &lt;p class=\"text-danger\"&gt;Danger!&lt;\/p&gt;\r\n            &lt;p class=\"text-primary\"&gt;This is primary colored text.&lt;\/p&gt;\r\n            &lt;p class=\"text-warning\"&gt;Warning!&lt;\/p&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"col-md-6\"&gt;\r\n    &lt;div class=\"panel panel-info\"&gt;\r\n        &lt;div class=\"panel-heading\"&gt;\r\n            Helper Classes &amp; Utilities\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"panel-body\"&gt;\r\n            &lt;p&gt;This is a demo of the many contextual colors\r\n            provided by Bootstrap to communicate additional\r\n            context using colors as well. Here they are applied as\r\n            Background color instead of text color.\r\n            &lt;\/p&gt;\r\n            &lt;p class=\"bg-muted\"&gt;This is muted text.&lt;\/p&gt;\r\n            &lt;p class=\"bg-success\"&gt;While this one indicates success&lt;\/p&gt;\r\n            &lt;p class=\"bg-info\"&gt;This is what simple informational message looks like.&lt;\/p&gt;\r\n            &lt;p class=\"bg-danger\"&gt;Danger!&lt;\/p&gt;\r\n            &lt;p class=\"bg-primary\"&gt;This is primary colored text.&lt;\/p&gt;\r\n            &lt;p class=\"bg-warning\"&gt;Warning!&lt;\/p&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n...\r\n<\/pre>\n<p>Apart from Helper classes there are certain Utility classes that help with turn visibility on or off for content at specific screen sizes. This is the reason they are referred to as Responsive Utilities since they have to do with the screen or viewport size. For example, to ensure an element is only visible on Tablets we can use the following CSS Class.<\/p>\n<pre class=\"brush: html\">visible-sm-*\r\n<\/pre>\n<p>Similarly, we can ensure an element is always hidden on Mobile device by decorating with the following CSS Class.<\/p>\n<pre class=\"brush: html\">hidden-xs\r\n<\/pre>\n<h2><a name=\"components\"><\/a>4. Components<\/h2>\n<p>Bootstrap provides quite a few components for immediate use. Let us see these components, namely Glyphicons, Dropdowns, Nav, Breadcrumbs, Pagination, Jumbotrons and others in action.<\/p>\n<p>There are a couple of hundred or more glyphs available for free usage with Bootstrap. We need to decorate a span tag with the appropriate CSS Class to use them. For example to use the cloud glyph we need to use the following markup:<\/p>\n<pre class=\"brush: html;\">...\r\n&lt;span class=\"glyphicon glyphicon-cloud\" aria-hidden=\"true\"&gt;&lt;\/span&gt;\r\n...\r\n<\/pre>\n<p>Moving on to the next component, namely Dropdowns, we can build one using a <code>div<\/code> decorated with <code>dropdown<\/code> class. This div contains the list of options enclosed in an unordered list. The final markup ought to look like:<\/p>\n<p><span style=\"text-decoration: underline;\"><em>Component.html<\/em><\/span><\/p>\n<pre class=\"brush: html;\">...\r\n&lt;div class=\"dropdown\"&gt;\r\n    &lt;button class=\"btn btn-default dropdown-toggle\" type=\"button\" id=\"ddMenu\" data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"true\"&gt;\r\n        Dropdown\r\n        &lt;span class=\"caret\"&gt;&lt;\/span&gt;\r\n    &lt;\/button&gt;\r\n    &lt;ul class=\"dropdown-menu\" aria-labelledby=\"ddMenu\"&gt;\r\n        &lt;li&gt;&lt;a href=\"#\"&gt;First Action&lt;\/a&gt;&lt;\/li&gt;\r\n        &lt;li&gt;&lt;a href=\"#\"&gt;Second Action&lt;\/a&gt;&lt;\/li&gt;\r\n        &lt;li role=\"separator\" class=\"divider\"&gt;&lt;\/li&gt;\r\n        &lt;li&gt;&lt;a href=\"#\"&gt;Separator above this one&lt;\/a&gt;&lt;\/li&gt;\r\n    &lt;\/ul&gt;\r\n&lt;\/div&gt;\r\n...\r\n<\/pre>\n<p>Navigation bars are an absolute must on every sites with multiple pages or even SPAs. Bootstrap has a CSS class <code>nav<\/code> that provide us a really flexible navigation bar option. The image below shows a tabbed nav in action.<\/p>\n<figure id=\"attachment_18104\" aria-describedby=\"caption-attachment-18104\" style=\"width: 740px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/navtabsdemo.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18104\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/navtabsdemo.jpg\" alt=\"\" width=\"740\" height=\"216\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/navtabsdemo.jpg 740w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/navtabsdemo-300x88.jpg 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" \/><\/a><figcaption id=\"caption-attachment-18104\" class=\"wp-caption-text\">Nav Tabs Demo<\/figcaption><\/figure>\n<p>The Html markup to create the above is as simple as below:<br \/>\n<span style=\"text-decoration: underline;\"><em>Component.html<\/em><\/span><\/p>\n<pre class=\"brush: html;\">...\r\n\r\n    &lt;ul class=\"nav nav-tabs\"&gt;\r\n        &lt;li role=\"presentation\" class=\"active\"&gt;&lt;a href=\"#\"&gt;Home&lt;\/a&gt;&lt;\/li&gt;\r\n        &lt;li role=\"presentation\"&gt;&lt;a href=\"#\"&gt;Nav-pills&lt;\/a&gt;&lt;\/li&gt;\r\n        &lt;li role=\"presentation\"&gt;&lt;a href=\"#\"&gt;Navbar&lt;\/a&gt;&lt;\/li&gt;\r\n    &lt;\/ul&gt;\r\n\r\n...\r\n<\/pre>\n<p>Another option with navs is the nav-pills which looks as below:<\/p>\n<figure id=\"attachment_18107\" aria-describedby=\"caption-attachment-18107\" style=\"width: 728px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/navpillsdemo.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18107\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/navpillsdemo.jpg\" alt=\"\" width=\"728\" height=\"201\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/navpillsdemo.jpg 728w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/navpillsdemo-300x83.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" \/><\/a><figcaption id=\"caption-attachment-18107\" class=\"wp-caption-text\">Nav Pills Demo<\/figcaption><\/figure>\n<p>The Html markup for the same is provided below:<br \/>\n<span style=\"text-decoration: underline;\"><em>Component.html<\/em><\/span><\/p>\n<pre class=\"brush: html;\">...\r\n&lt;ul class=\"nav nav-pills\"&gt;\r\n    &lt;li role=\"presentation\" class=\"active\"&gt;&lt;a href=\"#\"&gt;Home&lt;\/a&gt;&lt;\/li&gt;\r\n    &lt;li role=\"presentation\"&gt;&lt;a href=\"#\"&gt;Nav Pills&lt;\/a&gt;&lt;\/li&gt;\r\n    &lt;li role=\"presentation\"&gt;&lt;a href=\"#\"&gt;Navbar&lt;\/a&gt;&lt;\/li&gt;\r\n&lt;\/ul&gt;\r\n...\r\n<\/pre>\n<p>There are many options and possibilities with nav class. Now let us take a look at the Breadcrumbs component which is basically a compass for the user as they navigate around a site to know exactly where they are within the site and the path taken to reach where they are and allow them to navigate back if they so choose.<br \/>\nThe Screenshot below shows a demo of the Breadcrumbs component from Bootstrap:<\/p>\n<figure id=\"attachment_18110\" aria-describedby=\"caption-attachment-18110\" style=\"width: 455px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/BreadcrumbsDemo.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18110\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/BreadcrumbsDemo.jpg\" alt=\"\" width=\"455\" height=\"162\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/BreadcrumbsDemo.jpg 455w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/BreadcrumbsDemo-300x107.jpg 300w\" sizes=\"(max-width: 455px) 100vw, 455px\" \/><\/a><figcaption id=\"caption-attachment-18110\" class=\"wp-caption-text\">Breadcrumbs Demo<\/figcaption><\/figure>\n<p>Html markup for the above is as below:<\/p>\n<p><span style=\"text-decoration: underline;\"><em>Component.html<\/em><\/span><\/p>\n<pre class=\"brush: html;\">&lt;ol class=\"breadcrumb\"&gt;\r\n    &lt;li&gt;&lt;a href=\"#\"&gt;Home&lt;\/a&gt;&lt;\/li&gt;\r\n    &lt;li&gt;&lt;a href=\"#\"&gt;Library&lt;\/a&gt;&lt;\/li&gt;\r\n    &lt;li class=\"active\"&gt;Data&lt;\/li&gt;\r\n&lt;\/ol&gt;\r\n<\/pre>\n<p>The Pagination component comes in handy when we need to split up the information to show across multiple pages, for example in case of search results. The screenshot below shows the pagination component in action.<\/p>\n<figure id=\"attachment_18112\" aria-describedby=\"caption-attachment-18112\" style=\"width: 475px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/PaginationDemo.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18112\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/PaginationDemo.jpg\" alt=\"\" width=\"475\" height=\"157\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/PaginationDemo.jpg 475w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/PaginationDemo-300x99.jpg 300w\" sizes=\"(max-width: 475px) 100vw, 475px\" \/><\/a><figcaption id=\"caption-attachment-18112\" class=\"wp-caption-text\">Pagination Demo<\/figcaption><\/figure>\n<p>Html markup for above is simple and looks like below:<\/p>\n<p><span style=\"text-decoration: underline;\"><em>Component.html<\/em><\/span><\/p>\n<pre class=\"brush: html;\">...\r\n&lt;ul class=\"pagination\"&gt;\r\n    &lt;li&gt;\r\n        &lt;a href=\"#\" aria-label=\"Previous\"&gt;\r\n            &lt;span aria-hidden=\"true\"&gt;&amp;laquo;&lt;\/span&gt;\r\n        &lt;\/a&gt;\r\n    &lt;\/li&gt;\r\n    &lt;li&gt;&lt;a href=\"#\"&gt;1&lt;\/a&gt;&lt;\/li&gt;\r\n    &lt;li&gt;&lt;a href=\"#\"&gt;2&lt;\/a&gt;&lt;\/li&gt;\r\n    &lt;li&gt;&lt;a href=\"#\"&gt;3&lt;\/a&gt;&lt;\/li&gt;\r\n    &lt;li&gt;&lt;a href=\"#\"&gt;4&lt;\/a&gt;&lt;\/li&gt;\r\n    &lt;li&gt;&lt;a href=\"#\"&gt;5&lt;\/a&gt;&lt;\/li&gt;\r\n    &lt;li&gt;\r\n        &lt;a href=\"#\" aria-label=\"Next\"&gt;\r\n            &lt;span aria-hidden=\"true\"&gt;&amp;raquo;&lt;\/span&gt;\r\n        &lt;\/a&gt;\r\n    &lt;\/li&gt;\r\n&lt;\/ul&gt;\r\n<\/pre>\n<p>Jumbotron Component as the name suggests is used to highlight key information about the web page across the top of the page. It looks as follows:<\/p>\n<figure id=\"attachment_18114\" aria-describedby=\"caption-attachment-18114\" style=\"width: 850px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/JumbotronDemo.jpg\"><img decoding=\"async\" class=\"size-full wp-image-18114\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/JumbotronDemo.jpg\" alt=\"\" width=\"850\" height=\"323\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/JumbotronDemo.jpg 850w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/JumbotronDemo-300x114.jpg 300w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/JumbotronDemo-768x292.jpg 768w\" sizes=\"(max-width: 850px) 100vw, 850px\" \/><\/a><figcaption id=\"caption-attachment-18114\" class=\"wp-caption-text\">Jumbotron Demo<\/figcaption><\/figure>\n<p>The Html markup for a Jumbotron is as follows:<\/p>\n<p><span style=\"text-decoration: underline;\"><em>Component.html<\/em><\/span><\/p>\n<pre class=\"brush: html;\">&lt;div class=\"jumbotron\"&gt;\r\n    &lt;h1&gt;Jumbotron Demo!&lt;\/h1&gt;\r\n    &lt;p&gt;...&lt;\/p&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>Run the project using following command at the root of the project:<\/p>\n<pre class=\"brush: bash;\">npm install\r\nnode index.js\r\n<\/pre>\n<h2><a name=\"download\"><\/a>5. Download the source code<\/h2>\n<p>This was a tutorial on how to learn Twitter Bootstrap Quickly.<\/p>\n<div class=\"download\"><strong>Download<\/strong><br \/>\nYou can download the full source code of this example here: <a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/07\/WCG-Tutorial-Learn-Bootstrap-Quickly.zip\"><strong>WCG &#8212; Tutorial Learn Bootstrap Quickly<\/strong><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>The aim of this tutorial is to get you up and running with Twitter Bootstrap framework quickly. Twitter Bootstrap has soared in popularity over the years and continues to be the go-to resource for front-end development. Let us explore the most common and frequently used components, features and css classes of this framework to get &hellip;<\/p>\n","protected":false},"author":213,"featured_media":8515,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[284],"tags":[],"class_list":["post-17992","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bootstrap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Tutorial: Learn Twitter Bootstrap Quickly - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"The aim of this tutorial is to get you up and running with Twitter Bootstrap framework quickly. Twitter Bootstrap has soared in popularity over the years\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tutorial: Learn Twitter Bootstrap Quickly - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"The aim of this tutorial is to get you up and running with Twitter Bootstrap framework quickly. Twitter Bootstrap has soared in popularity over the years\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2017-08-07T08:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-08T11:05:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/11\/bootstrap-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Siddharth Seth\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Siddharth Seth\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"21 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/\"},\"author\":{\"name\":\"Siddharth Seth\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/9c939eb4c915443c7e493c813d979592\"},\"headline\":\"Tutorial: Learn Twitter Bootstrap Quickly\",\"datePublished\":\"2017-08-07T08:00:00+00:00\",\"dateModified\":\"2018-01-08T11:05:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/\"},\"wordCount\":1515,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/11\/bootstrap-logo.jpg\",\"articleSection\":[\"Bootstrap\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/\",\"name\":\"Tutorial: Learn Twitter Bootstrap Quickly - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/11\/bootstrap-logo.jpg\",\"datePublished\":\"2017-08-07T08:00:00+00:00\",\"dateModified\":\"2018-01-08T11:05:47+00:00\",\"description\":\"The aim of this tutorial is to get you up and running with Twitter Bootstrap framework quickly. Twitter Bootstrap has soared in popularity over the years\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/11\/bootstrap-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/11\/bootstrap-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CSS\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/css\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Bootstrap\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/css\/bootstrap\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Tutorial: Learn Twitter Bootstrap Quickly\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/9c939eb4c915443c7e493c813d979592\",\"name\":\"Siddharth Seth\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/86a5133a5e9d79f7997e2649b1afe58e895c0d88df47b3359103ec4c1a2077d6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/86a5133a5e9d79f7997e2649b1afe58e895c0d88df47b3359103ec4c1a2077d6?s=96&d=mm&r=g\",\"caption\":\"Siddharth Seth\"},\"description\":\"Siddharth is a Software Development Professional with a Master degree in Computer Applications from IGNOU. He has over 14 years of experience. And currently focused on Software Architecture, Cloud Computing, JavaScript Frameworks for Client and Server, Business Intelligence.\",\"sameAs\":[\"https:\/\/www.webcodegeeks.com\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/siddharth-seth\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tutorial: Learn Twitter Bootstrap Quickly - Web Code Geeks - 2026","description":"The aim of this tutorial is to get you up and running with Twitter Bootstrap framework quickly. Twitter Bootstrap has soared in popularity over the years","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:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/","og_locale":"en_US","og_type":"article","og_title":"Tutorial: Learn Twitter Bootstrap Quickly - Web Code Geeks - 2026","og_description":"The aim of this tutorial is to get you up and running with Twitter Bootstrap framework quickly. Twitter Bootstrap has soared in popularity over the years","og_url":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_published_time":"2017-08-07T08:00:00+00:00","article_modified_time":"2018-01-08T11:05:47+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/11\/bootstrap-logo.jpg","type":"image\/jpeg"}],"author":"Siddharth Seth","twitter_card":"summary_large_image","twitter_creator":"@webcodegeeks","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Siddharth Seth","Est. reading time":"21 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/"},"author":{"name":"Siddharth Seth","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/9c939eb4c915443c7e493c813d979592"},"headline":"Tutorial: Learn Twitter Bootstrap Quickly","datePublished":"2017-08-07T08:00:00+00:00","dateModified":"2018-01-08T11:05:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/"},"wordCount":1515,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/11\/bootstrap-logo.jpg","articleSection":["Bootstrap"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/","url":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/","name":"Tutorial: Learn Twitter Bootstrap Quickly - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/11\/bootstrap-logo.jpg","datePublished":"2017-08-07T08:00:00+00:00","dateModified":"2018-01-08T11:05:47+00:00","description":"The aim of this tutorial is to get you up and running with Twitter Bootstrap framework quickly. Twitter Bootstrap has soared in popularity over the years","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/11\/bootstrap-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2015\/11\/bootstrap-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/css\/bootstrap\/tutorial-learn-twitter-bootstrap-quickly\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"CSS","item":"https:\/\/www.webcodegeeks.com\/category\/css\/"},{"@type":"ListItem","position":3,"name":"Bootstrap","item":"https:\/\/www.webcodegeeks.com\/category\/css\/bootstrap\/"},{"@type":"ListItem","position":4,"name":"Tutorial: Learn Twitter Bootstrap Quickly"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/9c939eb4c915443c7e493c813d979592","name":"Siddharth Seth","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/86a5133a5e9d79f7997e2649b1afe58e895c0d88df47b3359103ec4c1a2077d6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/86a5133a5e9d79f7997e2649b1afe58e895c0d88df47b3359103ec4c1a2077d6?s=96&d=mm&r=g","caption":"Siddharth Seth"},"description":"Siddharth is a Software Development Professional with a Master degree in Computer Applications from IGNOU. He has over 14 years of experience. And currently focused on Software Architecture, Cloud Computing, JavaScript Frameworks for Client and Server, Business Intelligence.","sameAs":["https:\/\/www.webcodegeeks.com"],"url":"https:\/\/www.webcodegeeks.com\/author\/siddharth-seth\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/17992","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/213"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=17992"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/17992\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/8515"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=17992"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=17992"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=17992"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}