{"id":920,"date":"2019-07-16T10:32:06","date_gmt":"2019-07-16T10:32:06","guid":{"rendered":"https:\/\/studysection.com\/blog\/?p=920"},"modified":"2019-07-16T10:32:06","modified_gmt":"2019-07-16T10:32:06","slug":"bootstrap-badges-and-labels","status":"publish","type":"post","link":"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/","title":{"rendered":"Bootstrap Badges and Labels"},"content":{"rendered":"<p><strong>Bootstrap Labels<\/strong><br \/>\nBootstrap Labels are used to provide some additional or valuable information about something like counts, tips, important notes, warning messages etc. For this, we can use inline labels using class <em>.label<\/em>. To use bootstrap, include bootstrap css and js files and also include jQuery file in your application.<br \/>\n<\/br><\/p>\n<pre>\r\n&lt;!DOCTYPE html&gt;  \r\n&lt;html lang=\"en\"&gt;  \r\n&lt;head&gt;  \r\n  \t\t\t&lt;title&gt;Bootstrap Label Example&lt;\/title&gt;  \r\n  \t\t\t&lt;meta charset=\"utf-8\"&gt;  \r\n  \t\t\t&lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"&gt;  \r\n  \t\t\t&lt;link rel=\"stylesheet\" href=\"http:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.3.7\/css\/bootstrap.min.css\"&gt;    \r\n&lt;\/head&gt;  \r\n&lt;body&gt;\r\n&lt;div class=\"container\"&gt;  \r\n  \t\t\t&lt;h1&gt;Example Label heading &lt;span class=\"label label-default\"&gt;1&lt;\/span&gt;&lt;\/h1&gt;  \r\n  \t\t\t&lt;h2&gt;Example Label heading &lt;span class=\"label label-default\"&gt;2&lt;\/span&gt;&lt;\/h2&gt;  \r\n  \t\t\t&lt;h3&gt;Example Label heading &lt;span class=\"label label-default\"&gt;3&lt;\/span&gt;&lt;\/h3&gt;  \r\n  \t\t\t&lt;h4&gt;Example Label heading &lt;span class=\"label label-default\"&gt;4&lt;\/span&gt;&lt;\/h4&gt;  \r\n  \t\t\t&lt;h5&gt;Example Label heading &lt;span class=\"label label-default\"&gt;5&lt;\/span&gt;&lt;\/h5&gt;  \r\n  \t\t\t&lt;h6&gt;Example Label heading &lt;span class=\"label label-default\"&gt;6&lt;\/span&gt;&lt;\/h6&gt;  \r\n&lt;\/div&gt;  \r\n\r\n&lt;script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.12.0\/jquery.min.js\"&gt;&lt;\/script&gt;  \r\n&lt;script src=\"http:\/\/maxcdn.bootstrapcdn.com\/bootstrap\/3.3.7\/js\/bootstrap.min.js\"&gt;&lt;\/script&gt;  \r\n  \r\n&lt;\/body&gt;  \r\n&lt;\/html&gt;  \r\n<\/pre>\n<p>The output of above html sample is shown in the following screenshot:<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/07\/Bootstrap-blog-1.png\" \/><\/p>\n<p>Screenshot 1<\/p>\n<p>We can use additional contextual labels classes like <em>.label-primary<\/em>, <em>.label-success<\/em> etc. along with <em>.label<\/em> class to highlight information in different colors. <\/p>\n<pre>\r\n&lt;p&gt;This is default &lt;span class=\"label label-default\"&gt; Gray&lt;\/span&gt; color label&lt;\/p&gt;\r\n&lt;p&gt;This is primary &lt;span class=\"label label-primary\"&gt; Blue&lt;\/span&gt; color label&lt;\/p&gt;\r\n&lt;p&gt;This is success &lt;span class=\"label label-success\"&gt; Green&lt;\/span&gt; color label&lt;\/p&gt;\r\n&lt;p&gt;This is information &lt;span class=\"label label-info\"&gt; Light blue&lt;\/span&gt; color label&lt;\/p&gt;\r\n&lt;p&gt;This is default &lt;span class=\"label label-warning\"&gt; Orange&lt;\/span&gt; color label&lt;\/p&gt;\r\n&lt;p&gt;This is red &lt;span class=\"label label-danger\"&gt; Red&lt;\/span&gt; color label&lt;\/p&gt; \r\n<\/pre>\n<p>The output of above html sample is shown in following screenshot 2.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/07\/Bootstrap-blog-2.png\" \/><\/p>\n<p>Screenshot 2<\/p>\n<p><strong>Bootstrap Badges<\/strong><br \/>\nA badge can be used to denote any numerical value. Badges can be used to provide any important information such as unread messages, number of items added to cart, unread notifications, updates etc. To use badges in your application, simply add \u201c<em>badge<\/em>\u201d class to the opening span tag.<\/p>\n<pre>\r\n&lt;h2&gt;Badges&lt;\/h2&gt;  \r\n  \t&lt;a href=\"#\"&gt;News &lt;span class=\"badge\"&gt;5&lt;\/span&gt;&lt;\/a&gt;&lt;br&gt;  \r\n  \t&lt;a href=\"#\"&gt;Comments &lt;span class=\"badge\"&gt;10&lt;\/span&gt;&lt;\/a&gt;&lt;br&gt;  \r\n  \t&lt;a href=\"#\"&gt;Updates &lt;span class=\"badge\"&gt;2&lt;\/span&gt;&lt;\/a&gt; &lt;br&gt;   \r\n\t&lt;a href=\"#\"&gt;Shopping Cart &lt;span class=\"badge\"&gt;8&lt;\/span&gt;&lt;\/a&gt; &lt;br&gt;   \r\n\t&lt;a href=\"#\"&gt;Unread &lt;span class=\"badge\"&gt;5&lt;\/span&gt;&lt;\/a&gt; &lt;br&gt;  \r\n<\/pre>\n<p>The output of above HTML sample is shown in following screenshot 3.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/07\/Bootstrap-blog-3.png\" \/><\/p>\n<p>Screenshot 3<\/p>\n<p><a href=\"https:\/\/www.studysection.com\/bootstrap-4.0-foundation\" style=\"color:blue\">Bootstrap<\/a> badges can also be used inside other elements such as buttons. Let\u2019s see how we can add badges to buttons.<\/p>\n<pre>\r\n&lt;h2&gt; Badges on Buttons &lt;\/h2&gt; \r\n&lt;button type=\"button\" class=\"btn btn-primary\"&gt;Notifications &lt;span class=\"badge\"&gt;7&lt;\/span&gt;&lt;\/button&gt;  \r\n&lt;button type=\"button\" class=\"btn btn-success\"&gt;Notifications &lt;span class=\"badge\"&gt;3&lt;\/span&gt;&lt;\/button&gt;      \r\n&lt;button type=\"button\" class=\"btn btn-danger\"&gt;Critical Updates &lt;span class=\"badge\"&gt;5&lt;\/span&gt;&lt;\/button&gt;  \r\n<\/pre>\n<p>The output of above HTML sample is provided in following Screenshot 4. <\/p>\n<p><img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/07\/Bootstrap-blog-4.png\" \/><\/p>\n<p>Screenshot 4<\/p>\n<p>Badges can be applied to any dom element such as paragraph (&lt;p&gt;), heading (&lt;h1&gt;, &lt;h2&gt; etc.). <\/p>\n<p>In the sample, bootstrap having version 3.3.7 is used. Bootstrap 4 provides more contextual classes, means more features for providing different colors and shapes to badges. Bootstrap 3.3.7 provide only gray color and rectangular shapes to badges when we use any dom element except buttons. <\/p>\n<p>Contextual classes <em>badge-primary<\/em>, <em>badge-success<\/em>, <em>badge-danger<\/em>, <em>badge-warning<\/em> etc can be used along with badge class inside &lt;span&gt; to display colorful badges with bootstrap 4.<\/p>\n<pre>\r\n&lt;h2&gt;Badges for bootstrap 4&lt;\/h2&gt;\r\n&lt;a href=\"#\"&gt;News &lt;span class=\"badge badge-primary\"&gt;5&lt;\/span&gt;&lt;\/a&gt;&lt;br&gt;  \r\n  \t&lt;a href=\"#\"&gt;Comments &lt;span class=\"badge badge-success\"&gt;10&lt;\/span&gt;&lt;\/a&gt;&lt;br&gt;  \r\n  \t&lt;a href=\"#\"&gt;Updates &lt;span class=\"badge badge-warning\"&gt;2&lt;\/span&gt;&lt;\/a&gt; &lt;br&gt;   \r\n\t&lt;a href=\"#\"&gt;Critical updates &lt;span class=\"badge badge-danger\"&gt;8&lt;\/span&gt;&lt;\/a&gt; &lt;br&gt;   <\/pre>\n<p>The output of above sample code is shown below:<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/07\/Bootstrap-blog-5.png\" \/><\/p>\n<p>Screenshot 5<\/p>\n<p>Bootstrap 4 also provides <em>.badge-pill<\/em> class which makes badges more rounded.<\/p>\n<pre>\r\n&lt;p&gt;Badge with rounded shape example &lt;span class=\"badge badge-success badge-pill\"&gt;100&lt;\/span&gt;&lt;\/p&gt;\r\n<\/pre>\n<p>The output of above sample is:<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/07\/Bootstrap-blog-6.png\" \/><\/p>\n<p>Screenshot 6<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bootstrap Labels Bootstrap Labels are used to provide some additional or valuable information about something like counts, tips, important notes,<\/p>\n","protected":false},"author":1,"featured_media":921,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[163,162,118,39,164],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>StudySection Blog - Introduction to Bootstrap Badges and Labels<\/title>\n<meta name=\"description\" content=\"Bootstrap Labels are used to provide some additional or valuable information about something like counts, tips, important notes, warning messages etc.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"StudySection Blog - Introduction to Bootstrap Badges and Labels\" \/>\n<meta property=\"og:description\" content=\"Bootstrap Labels are used to provide some additional or valuable information about something like counts, tips, important notes, warning messages etc.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog Posts on famous people, innovations and educational topics\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/studysection\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-16T10:32:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/07\/bootstrap-blog.png\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"160\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin-studysection-blog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@studysection\" \/>\n<meta name=\"twitter:site\" content=\"@studysection\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin-studysection-blog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/\"},\"author\":{\"name\":\"admin-studysection-blog\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\"},\"headline\":\"Bootstrap Badges and Labels\",\"datePublished\":\"2019-07-16T10:32:06+00:00\",\"dateModified\":\"2019-07-16T10:32:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/\"},\"wordCount\":311,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"keywords\":[\"badges\",\"Bootstrap\",\"examples\",\"introduction\",\"lables\"],\"articleSection\":[\"Learn and Grow\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/\",\"url\":\"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/\",\"name\":\"StudySection Blog - Introduction to Bootstrap Badges and Labels\",\"isPartOf\":{\"@id\":\"https:\/\/studysection.com\/blog\/#website\"},\"datePublished\":\"2019-07-16T10:32:06+00:00\",\"dateModified\":\"2019-07-16T10:32:06+00:00\",\"description\":\"Bootstrap Labels are used to provide some additional or valuable information about something like counts, tips, important notes, warning messages etc.\",\"breadcrumb\":{\"@id\":\"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/studysection.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bootstrap Badges and Labels\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/studysection.com\/blog\/#website\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"name\":\"Blog Posts on famous people, innovations and educational topics\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/studysection.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/studysection.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/studysection.com\/blog\/#organization\",\"name\":\"StudySection\",\"url\":\"https:\/\/studysection.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"contentUrl\":\"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png\",\"width\":920,\"height\":440,\"caption\":\"StudySection\"},\"image\":{\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/studysection\",\"https:\/\/twitter.com\/studysection\",\"https:\/\/www.instagram.com\/study.section\/\",\"https:\/\/www.linkedin.com\/company\/studysection\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402\",\"name\":\"admin-studysection-blog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g\",\"caption\":\"admin-studysection-blog\"},\"url\":\"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"StudySection Blog - Introduction to Bootstrap Badges and Labels","description":"Bootstrap Labels are used to provide some additional or valuable information about something like counts, tips, important notes, warning messages etc.","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:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/","og_locale":"en_US","og_type":"article","og_title":"StudySection Blog - Introduction to Bootstrap Badges and Labels","og_description":"Bootstrap Labels are used to provide some additional or valuable information about something like counts, tips, important notes, warning messages etc.","og_url":"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/","og_site_name":"Blog Posts on famous people, innovations and educational topics","article_publisher":"https:\/\/www.facebook.com\/studysection","article_published_time":"2019-07-16T10:32:06+00:00","og_image":[{"width":300,"height":160,"url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2019\/07\/bootstrap-blog.png","type":"image\/png"}],"author":"admin-studysection-blog","twitter_card":"summary_large_image","twitter_creator":"@studysection","twitter_site":"@studysection","twitter_misc":{"Written by":"admin-studysection-blog","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/#article","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/"},"author":{"name":"admin-studysection-blog","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402"},"headline":"Bootstrap Badges and Labels","datePublished":"2019-07-16T10:32:06+00:00","dateModified":"2019-07-16T10:32:06+00:00","mainEntityOfPage":{"@id":"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/"},"wordCount":311,"commentCount":0,"publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"keywords":["badges","Bootstrap","examples","introduction","lables"],"articleSection":["Learn and Grow"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/","url":"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/","name":"StudySection Blog - Introduction to Bootstrap Badges and Labels","isPartOf":{"@id":"https:\/\/studysection.com\/blog\/#website"},"datePublished":"2019-07-16T10:32:06+00:00","dateModified":"2019-07-16T10:32:06+00:00","description":"Bootstrap Labels are used to provide some additional or valuable information about something like counts, tips, important notes, warning messages etc.","breadcrumb":{"@id":"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/studysection.com\/blog\/bootstrap-badges-and-labels\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/studysection.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Bootstrap Badges and Labels"}]},{"@type":"WebSite","@id":"https:\/\/studysection.com\/blog\/#website","url":"https:\/\/studysection.com\/blog\/","name":"Blog Posts on famous people, innovations and educational topics","description":"","publisher":{"@id":"https:\/\/studysection.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/studysection.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/studysection.com\/blog\/#organization","name":"StudySection","url":"https:\/\/studysection.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","contentUrl":"https:\/\/studysection.com\/blog\/wp-content\/uploads\/2021\/10\/studySection-logo.png","width":920,"height":440,"caption":"StudySection"},"image":{"@id":"https:\/\/studysection.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/studysection","https:\/\/twitter.com\/studysection","https:\/\/www.instagram.com\/study.section\/","https:\/\/www.linkedin.com\/company\/studysection"]},{"@type":"Person","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/db367e2c29a12d1808fb1979edb3d402","name":"admin-studysection-blog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/studysection.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/054ac87a6874df1932004239cd8eab36?s=96&d=mm&r=g","caption":"admin-studysection-blog"},"url":"https:\/\/studysection.com\/blog\/author\/admin-studysection-blog\/"}]}},"views":927,"_links":{"self":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/920"}],"collection":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/comments?post=920"}],"version-history":[{"count":22,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/920\/revisions"}],"predecessor-version":[{"id":955,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/posts\/920\/revisions\/955"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media\/921"}],"wp:attachment":[{"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/media?parent=920"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/categories?post=920"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/studysection.com\/blog\/wp-json\/wp\/v2\/tags?post=920"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}