{"id":130,"date":"2024-02-15T14:41:22","date_gmt":"2024-02-15T14:41:22","guid":{"rendered":"https:\/\/www.xopsschool.com\/tutorials\/?p=130"},"modified":"2024-02-29T18:07:02","modified_gmt":"2024-02-29T18:07:02","slug":"introduction-to-bootsgtrap","status":"publish","type":"post","link":"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/","title":{"rendered":"Introduction to Bootsgtrap ?"},"content":{"rendered":"\n<p>This Bootstrap tutorial is designd for beginners and experienced professional, covering basics and advanced concepts including including working with Bootstrap\u2019s CSS classes, incorporating JavaScript plugins, and more. This tutorial will help you with the knowledge and skills to create stunning and responsive websites.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is bootstrap?<\/h2>\n\n\n\n<p>Bootstrap is a free and open-source tool collection for creating responsive websites and web applications. It is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first websites. Nowadays, the websites are perfect for all browsers (IE, Firefox, and Chrome) and for all sizes of screens (Desktop, Tablets, Phablets, and Phones). All thanks to Bootstrap developers \u2013 Mark Otto and Jacob Thornton of Twitter, though it was later declared to be an open-source project.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Bootstrap Grid System?<\/h2>\n\n\n\n<p>In graphic design, a grid is a structure (usually two-dimensional) made up of a series of intersecting straight (vertical, horizontal) lines used to structure the content. It is widely used to design layout and content structure in print design. In web design, it is a very effective method to create a consistent layout rapidly and effectively using HTML and CSS. The Bootstrap Grid System allows up to 12 columns across the page. You can use all 12 columns individually or you can groups the columns together to create wider columns.Bootstrap Grid System is responsive and the columns are re-arranged automatically according to the screen size.<br><\/p>\n\n\n\n<p><strong>Grid Classes:-<\/strong>The Bootstrap grid system has four classes:-  xs (for phones &#8211; screens less than 768px wide) sm (for tablets &#8211; screens equal to or greater than 768px wide) md (for small laptops &#8211; screens equal to or greater than 992px wide)  lg (for laptops and desktops &#8211; screens equal to or greater than 1200px wide)<br>Follow the below instructions while creating a Bootstrap Grid:<br>Create a row (). Add the number of columns, you want in the grid (tags with appropriate .col-<em>&#8211;<\/em> classes).<br>Note that numbers in .col-<em>&#8211;<\/em> should always add up to 12 for each row.<\/p>\n\n\n\n<p><strong>Bootstrap Grid Example :- <\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\r\n&lt;html lang=\"en\">\r\n&lt;head>\r\n&lt;title>Job&lt;\/title>\r\n&lt;link rel=\"stylesheet\" href=\"https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.3.6\/css\/bootstrap.min.css\"\/>\r\n&lt;\/head>\r\n&lt;body>\r\n&lt;div class=\"container\">\r\n&lt;h1>Grid Example&lt;\/h1>\r\n&lt;div class=\"row\">\r\n&lt;div class=\"col-md-3\"style=\"background-color:lavender;\">Rahul&lt;\/div>\r\n&lt;div class=\"col-md-3\"style=\"background-color:lavenderblush;\">Vijay&lt;\/div>\r\n&lt;div class=\"col-md-3\"style=\"background-color:lavender;\">Kartik&lt;\/div>\r\n&lt;div class=\"col-md-3\"style=\"background-color:lavenderblush;\">Ajeet&lt;\/div>\r\n&lt;\/div>\r\n&lt;\/div>\r\n&lt;script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.11.3\/jquery.min.js\">&lt;\/script>\r\n&lt;script src=\"https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.3.5\/js\/bootstrap.min.js\">&lt;\/script>\r\n&lt;\/body>\r\n&lt;\/html><\/code><\/pre>\n\n\n\n<p><strong>Navigation Bars<\/strong><\/p>\n\n\n\n<p>A navigation bar is a navigation header that is placed at the top of the page.With Bootstrap, a navigation bar can extend or collapse, depending on the screen size.A standard navigation bar is created with.&lt;nav class=&#8221;navbar navbar-default&#8221;>.<\/p>\n\n\n\n<p><strong>Navigation Bar Example:-<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\r\n&lt;html lang=\"en\">\r\n&lt;head>\r\n&lt;title>Bootstrap Example&lt;\/title>\r\n&lt;meta charset=\"utf-8\">\r\n&lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n&lt;link rel=\"stylesheet\" href=\"https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.4.1\/css\/bootstrap.min.css\">\r\n&lt;script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.7.1\/jquery.min.js\">&lt;\/script>\r\n&lt;script src=\"https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.4.1\/js\/bootstrap.min.js\">&lt;\/script>\r\n&lt;\/head>\r\n&lt;body>\r\n&lt;nav class=\"navbar navbar-default\">\r\n&lt;div class=\"container-fluid\">\r\n&lt;div class=\"navbar-header\">\r\n&lt;a class=\"navbar-brand\" href=\"#\">WebSiteName&lt;\/a>\r\n&lt;\/div>\r\n&lt;ul class=\"nav navbar-nav\">\r\n&lt;li class=\"active\">&lt;a href=\"#\">Home&lt;\/a>&lt;\/li>\r\n&lt;li>&lt;a href=\"#\">Page 1&lt;\/a>&lt;\/li>\r\n&lt;li>&lt;a href=\"#\">Page 2&lt;\/a>&lt;\/li>\r\n&lt;li>&lt;a href=\"#\">Page 3&lt;\/a>&lt;\/li>\r\n&lt;\/ul>\r\n&lt;\/div>\r\n&lt;\/nav>\r\n&lt;div class=\"container\">\r\n&lt;h3>Basic Navbar Example&lt;\/h3>\r\n&lt;p>A navigation bar is a navigation header that is placed at the top of the page.&lt;\/p>\r\n&lt;\/div>\r\n&lt;\/body>\r\n&lt;\/html>\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Bootstrap Card ?<\/h2>\n\n\n\n<p>A card is a flexible and extensible content container. It includes options for headers and footers, a wide variety of content, contextual background colors, and powerful display options. If you\u2019re familiar with Bootstrap 3, cards replace our old panels, wells, and thumbnails. Similar functionality to those components is available as modifier classes for cards.<\/p>\n\n\n\n<p><strong>Example :-<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\r\n&lt;html lang=\"en\">\r\n&lt;head>\r\n&lt;title>Bootstrap Card&lt;\/title>\r\n&lt;meta charset=\"utf-8\">\r\n&lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n&lt;link rel=\"stylesheet\" href=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@4.6.2\/dist\/css\/bootstrap.min.css\">\r\n&lt;script src=\"https:\/\/cdn.jsdelivr.net\/npm\/jquery@3.7.1\/dist\/jquery.slim.min.js\">&lt;\/script>\r\n&lt;script src=\"https:\/\/cdn.jsdelivr.net\/npm\/popper.js@1.16.1\/dist\/umd\/popper.min.js\">&lt;\/script>\r\n&lt;script src=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@4.6.2\/dist\/js\/bootstrap.bundle.min.js\">&lt;\/script>\r\n&lt;\/head>\r\n&lt;body>\r\n&lt;div class=\"container\">\r\n&lt;h2>Basic Card&lt;\/h2>\r\n&lt;div class=\"card\">\r\n&lt;div class=\"card-body\">Basic card&lt;\/div>\r\n&lt;\/div>\r\n&lt;\/div>\r\n&lt;\/body>\r\n&lt;\/html>\n\n<strong>Bootstrap Forms<\/strong>\n\nForm controls automatically receive some global styling with Bootstrap.\r\nAll textual &lt;input>, &lt;textarea>, and &lt;select> elements with class .form-control have a width of 100%.\r\nBootstrap Form Layouts\r\nBootstrap provides three types of form layouts:\r\nVertical form (this is default)\r\nHorizontal form\r\nInline form\r\nStandard rules for all three form layouts:\r\nWrap labels and form controls in &lt;div class=\"form-group\"> (needed for optimum spacing)\r\nAdd class .form-control to all textual &lt;input>, &lt;textarea>, and &lt;select> elements.<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!DOCTYPE html>\r\n&lt;html lang=\"en\">\r\n&lt;head>\r\n&lt;title>Bootstrap Example&lt;\/title>\r\n&lt;meta charset=\"utf-8\">\r\n&lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\r\n&lt;link rel=\"stylesheet\" href=\"https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.4.1\/css\/bootstrap.min.css\">\r\n&lt;script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.7.1\/jquery.min.js\">&lt;\/script>\r\n&lt;script src=\"https:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.4.1\/js\/bootstrap.min.js\">&lt;\/script>\r\n&lt;\/head>\r\n&lt;body>\r\n&lt;div class=\"container\">\r\n&lt;h2>Vertical (basic) form&lt;\/h2>\r\n&lt;form action=\"\/action_page.php\">\r\n&lt;div class=\"form-group\">\r\n&lt;label for=\"email\">Email:&lt;\/label>\r\n&lt;input type=\"email\" class=\"form-control\" id=\"email\" placeholder=\"Enter email\" name=\"email\">\r\n&lt;\/div>\r\n&lt;div class=\"form-group\">\r\n&lt;label for=\"pwd\">Password:&lt;\/label>\r\n&lt;input type=\"password\" class=\"form-control\" id=\"pwd\" placeholder=\"Enter password\" name=\"pwd\">\r\n&lt;\/div>\r\n&lt;div class=\"checkbox\">\r\n&lt;label>&lt;input type=\"checkbox\" name=\"remember\"> Remember me&lt;\/label>\r\n&lt;\/div>\r\n&lt;button type=\"submit\" class=\"btn btn-default\">Submit&lt;\/button>\r\n&lt;\/form>\r\n&lt;\/div>\r\n&lt;\/body>\r\n&lt;\/html><\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>This Bootstrap tutorial is designd for beginners and experienced professional, covering basics and advanced concepts including including working with Bootstrap\u2019s CSS classes, incorporating JavaScript plugins, and more. This tutorial will help you with the knowledge and skills to create stunning and responsive websites. What is bootstrap? Bootstrap is a free and open-source tool collection for &#8230; <a title=\"Introduction to Bootsgtrap ?\" class=\"read-more\" href=\"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/\" aria-label=\"Read more about Introduction to Bootsgtrap ?\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[],"class_list":["post-130","post","type-post","status-publish","format-standard","hentry","category-introduction-to-bootsgtrap"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Introduction to Bootsgtrap ? - XOps Tutorials!!!<\/title>\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.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Introduction to Bootsgtrap ? - XOps Tutorials!!!\" \/>\n<meta property=\"og:description\" content=\"This Bootstrap tutorial is designd for beginners and experienced professional, covering basics and advanced concepts including including working with Bootstrap\u2019s CSS classes, incorporating JavaScript plugins, and more. This tutorial will help you with the knowledge and skills to create stunning and responsive websites. What is bootstrap? Bootstrap is a free and open-source tool collection for ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/\" \/>\n<meta property=\"og:site_name\" content=\"XOps Tutorials!!!\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-15T14:41:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-29T18:07:02+00:00\" \/>\n<meta name=\"author\" content=\"ritik hansda\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ritik hansda\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/\"},\"author\":{\"name\":\"ritik hansda\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/c0119ddd2d27ea9cd476e809c8294ba7\"},\"headline\":\"Introduction to Bootsgtrap ?\",\"datePublished\":\"2024-02-15T14:41:22+00:00\",\"dateModified\":\"2024-02-29T18:07:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/\"},\"wordCount\":439,\"commentCount\":0,\"articleSection\":[\"Introduction to Bootsgtrap ?\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/\",\"url\":\"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/\",\"name\":\"Introduction to Bootsgtrap ? - XOps Tutorials!!!\",\"isPartOf\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#website\"},\"datePublished\":\"2024-02-15T14:41:22+00:00\",\"dateModified\":\"2024-02-29T18:07:02+00:00\",\"author\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/c0119ddd2d27ea9cd476e809c8294ba7\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.xopsschool.com\/tutorials\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Introduction to Bootsgtrap ?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#website\",\"url\":\"https:\/\/www.xopsschool.com\/tutorials\/\",\"name\":\"XOps Tutorials!!!\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.xopsschool.com\/tutorials\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/c0119ddd2d27ea9cd476e809c8294ba7\",\"name\":\"ritik hansda\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6fe0bc437410899c524975272622377e50e726108b1ad03f7b4488f734304fce?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6fe0bc437410899c524975272622377e50e726108b1ad03f7b4488f734304fce?s=96&d=mm&r=g\",\"caption\":\"ritik hansda\"},\"url\":\"https:\/\/www.xopsschool.com\/tutorials\/author\/ritikhansda\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Introduction to Bootsgtrap ? - XOps Tutorials!!!","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.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/","og_locale":"en_US","og_type":"article","og_title":"Introduction to Bootsgtrap ? - XOps Tutorials!!!","og_description":"This Bootstrap tutorial is designd for beginners and experienced professional, covering basics and advanced concepts including including working with Bootstrap\u2019s CSS classes, incorporating JavaScript plugins, and more. This tutorial will help you with the knowledge and skills to create stunning and responsive websites. What is bootstrap? Bootstrap is a free and open-source tool collection for ... Read more","og_url":"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/","og_site_name":"XOps Tutorials!!!","article_published_time":"2024-02-15T14:41:22+00:00","article_modified_time":"2024-02-29T18:07:02+00:00","author":"ritik hansda","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ritik hansda","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/#article","isPartOf":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/"},"author":{"name":"ritik hansda","@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/c0119ddd2d27ea9cd476e809c8294ba7"},"headline":"Introduction to Bootsgtrap ?","datePublished":"2024-02-15T14:41:22+00:00","dateModified":"2024-02-29T18:07:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/"},"wordCount":439,"commentCount":0,"articleSection":["Introduction to Bootsgtrap ?"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/","url":"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/","name":"Introduction to Bootsgtrap ? - XOps Tutorials!!!","isPartOf":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/#website"},"datePublished":"2024-02-15T14:41:22+00:00","dateModified":"2024-02-29T18:07:02+00:00","author":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/c0119ddd2d27ea9cd476e809c8294ba7"},"breadcrumb":{"@id":"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.xopsschool.com\/tutorials\/introduction-to-bootsgtrap\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.xopsschool.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"Introduction to Bootsgtrap ?"}]},{"@type":"WebSite","@id":"https:\/\/www.xopsschool.com\/tutorials\/#website","url":"https:\/\/www.xopsschool.com\/tutorials\/","name":"XOps Tutorials!!!","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.xopsschool.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/c0119ddd2d27ea9cd476e809c8294ba7","name":"ritik hansda","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.xopsschool.com\/tutorials\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6fe0bc437410899c524975272622377e50e726108b1ad03f7b4488f734304fce?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6fe0bc437410899c524975272622377e50e726108b1ad03f7b4488f734304fce?s=96&d=mm&r=g","caption":"ritik hansda"},"url":"https:\/\/www.xopsschool.com\/tutorials\/author\/ritikhansda\/"}]}},"_links":{"self":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts\/130","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/comments?post=130"}],"version-history":[{"count":1,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts\/130\/revisions"}],"predecessor-version":[{"id":131,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/posts\/130\/revisions\/131"}],"wp:attachment":[{"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/media?parent=130"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/categories?post=130"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.xopsschool.com\/tutorials\/wp-json\/wp\/v2\/tags?post=130"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}