{"id":2972,"date":"2022-10-04T08:40:30","date_gmt":"2022-10-04T08:40:30","guid":{"rendered":"http:\/\/the-codest.localhost\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/"},"modified":"2026-03-11T05:54:57","modified_gmt":"2026-03-11T05:54:57","slug":"3-useful-html-tags-you-might-not-know-even-existed","status":"publish","type":"post","link":"https:\/\/thecodest.co\/en\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/","title":{"rendered":"3 Useful HTML Tags You Might Not Know Even Existed"},"content":{"rendered":"\n<p>Front-end developers have to be closely familiar with <strong>HTML tags<\/strong> since this is their natural environment on a daily basis. I bet all of you know some basic tags such as <code>&lt;header&gt;, &lt;section&gt;, &lt;footer&gt;<\/code> and so on. But, for example, did you know that you can suggest a word-break moment using just <strong>HTML<\/strong>, without CSS?<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">WBR<\/h2>\n\n\n\n<p>Let&#8217;s assume you&#8217;re working on some website or app for a German client. As you know, German words can be reeeaally long. So you have the design with some text content you have to reproduce in <a href=\"https:\/\/thecodest.co\/en\/dictionary\/what-is-code-refactoring\/\">code<\/a> and this content has to break in very specific moments. Here comes the <code>&lt;wbr><\/code> tag to help you.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">Geburtstagskuchen<\/code><\/pre>\n\n\n\n<p>That&#8217;s it! With such a simple tag, you can manipulate text contents as you wish.<\/p>\n\n\n\n<p>But what about browser support? Well, it&#8217;s pretty good, to be honest. Most browsers will understand this tag, but Opera on Android and Safari on iOS might have problems.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"\/app\/uploads\/2024\/05\/1.webp\" alt=\"wbr compability table\" title=\"wbr compability \"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">METER<\/h2>\n\n\n\n<p>Imagine you&#8217;re building a disk storage manager app. You need to somehow show in UI how much storage is still available, and you really want to make it as accessible as possible. This is just a perfect use-case for the <code>&lt;meter&gt;<\/code> tag. It&#8217;ll just you only the value within a defined range. Another cool thing about this tag are its attributes:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>low \u2192 when the current value is lower than the set low value, the meter&#8217;s bar will become red;<\/li>\n\n\n\n<li>optimum \u2192 when the current values is higher than optimum attribute value, the meter&#8217;s bar will become green;<\/li>\n\n\n\n<li>high \u2192 when high value is lower than maximum and higher than optimum value, the meter&#8217;s bar will be orange. Otherwise, it&#8217;ll be green.<\/li>\n<\/ul>\n\n\n\n<p>You might also know a similar tag, which is progress. So, what&#8217;s actually the difference between them? The progress tag should be used for ongoing tasks. In other words, use the progress tag when you deal with a specific task. With the meter tag, it should be used to show disk or memory usage. Another difference is that the meter tag isn&#8217;t supported by IE and that it is actually the only disadvantage of this tag.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"\/app\/uploads\/2024\/05\/2.webp\" alt=\"meter compability meter \" title=\"meter compability\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">DEL and INS<\/h2>\n\n\n\n<p>Have you ever wondered how to build an accessible indicator of deleted and added parts of content (diff in GitHub or email notifications from Jira when the ticket has been updated)? You just need to wrap the deleted content with the<code>&lt;del&gt;<\/code>tag. For example: <code>&lt;del&gt;&lt;p&gt;Just deleted content&lt;\/p&gt;&lt;\/del&gt;<\/code>. To show just the added part of the content, you can use the<code>&lt;ins&gt;<\/code> tag in exactly the same way. This tag offers also two attributes:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>cite \u2192 uri of a resource that explains why this part has been added;<\/li>\n\n\n\n<li>datetime \u2192 <a href=\"https:\/\/thecodest.co\/en\/blog\/app-data-collection-security-risks-value-and-types-explored\/\">data<\/a> and time of the change.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"\/app\/uploads\/2024\/05\/ins-compatibility.webp\" alt=\"ins compability table \" title=\"ins compability\"\/><\/figure>\n\n\n\n<p>There are, of course, much more useful <strong>tags in HTML <\/strong>. I highly recommend using all of them when it&#8217;s possible and appropriate. Your clients and app users will thank you for such an approach. Be careful though, because some tags might be deprecated. You can always make sure that a less common tag you want to use is still valid and has good support in <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/HTML\/Element\">MDN documentation<\/a>.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><a href=\"_wp_link_placeholder\"><img loading=\"lazy\" decoding=\"async\" width=\"1283\" height=\"460\" src=\"https:\/\/thecodest.co\/app\/uploads\/2024\/05\/interested_in_cooperation_.png\" alt=\"\" class=\"wp-image-4927\" srcset=\"https:\/\/thecodest.co\/app\/uploads\/2024\/05\/interested_in_cooperation_.png 1283w, https:\/\/thecodest.co\/app\/uploads\/2024\/05\/interested_in_cooperation_-300x108.png 300w, https:\/\/thecodest.co\/app\/uploads\/2024\/05\/interested_in_cooperation_-1024x367.png 1024w, https:\/\/thecodest.co\/app\/uploads\/2024\/05\/interested_in_cooperation_-768x275.png 768w, https:\/\/thecodest.co\/app\/uploads\/2024\/05\/interested_in_cooperation_-18x6.png 18w, https:\/\/thecodest.co\/app\/uploads\/2024\/05\/interested_in_cooperation_-67x24.png 67w\" sizes=\"auto, (max-width: 1283px) 100vw, 1283px\" \/><\/a><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Nowadays, accessibility (A11y) is crucial on all stages of building custom software products. Starting from the UX\/UI design part, it trespasses into advanced levels of building features in code. It provides tons of benefits for developers that work on increasing DX, but more importantly for end users. One of those a11y parts in HTML are semantic tags and that&#8217;s what I&#8217;d like to cover here.<\/p>\n","protected":false},"author":2,"featured_media":2973,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[8],"tags":[],"class_list":["post-2972","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-software-development"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>3 Useful HTML Tags You Might Not Know Even Existed - The Codest<\/title>\n<meta name=\"description\" content=\"Nowadays, accessibility (A11y) is crucial on all stages of building custom software products.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thecodest.co\/en\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"3 Useful HTML Tags You Might Not Know Even Existed\" \/>\n<meta property=\"og:description\" content=\"Nowadays, accessibility (A11y) is crucial on all stages of building custom software products.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thecodest.co\/en\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/\" \/>\n<meta property=\"og:site_name\" content=\"The Codest\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-04T08:40:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-11T05:54:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thecodest.co\/app\/uploads\/2024\/05\/3_useful_html_tags_you_might_not_know_even_existed.png\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"thecodest\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"thecodest\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/\"},\"author\":{\"name\":\"thecodest\",\"@id\":\"https:\\\/\\\/thecodest.co\\\/#\\\/schema\\\/person\\\/7e3fe41dfa4f4e41a7baad4c6e0d4f76\"},\"headline\":\"3 Useful HTML Tags You Might Not Know Even Existed\",\"datePublished\":\"2022-10-04T08:40:30+00:00\",\"dateModified\":\"2026-03-11T05:54:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/\"},\"wordCount\":526,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/thecodest.co\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/thecodest.co\\\/app\\\/uploads\\\/2024\\\/05\\\/3_useful_html_tags_you_might_not_know_even_existed.png\",\"articleSection\":[\"Software Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/\",\"url\":\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/\",\"name\":\"3 Useful HTML Tags You Might Not Know Even Existed - The Codest\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/thecodest.co\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/thecodest.co\\\/app\\\/uploads\\\/2024\\\/05\\\/3_useful_html_tags_you_might_not_know_even_existed.png\",\"datePublished\":\"2022-10-04T08:40:30+00:00\",\"dateModified\":\"2026-03-11T05:54:57+00:00\",\"description\":\"Nowadays, accessibility (A11y) is crucial on all stages of building custom software products.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/#primaryimage\",\"url\":\"https:\\\/\\\/thecodest.co\\\/app\\\/uploads\\\/2024\\\/05\\\/3_useful_html_tags_you_might_not_know_even_existed.png\",\"contentUrl\":\"https:\\\/\\\/thecodest.co\\\/app\\\/uploads\\\/2024\\\/05\\\/3_useful_html_tags_you_might_not_know_even_existed.png\",\"width\":960,\"height\":540},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/thecodest.co\\\/blog\\\/3-useful-html-tags-you-might-not-know-even-existed\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/thecodest.co\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"3 Useful HTML Tags You Might Not Know Even Existed\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/thecodest.co\\\/#website\",\"url\":\"https:\\\/\\\/thecodest.co\\\/\",\"name\":\"The Codest\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/thecodest.co\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/thecodest.co\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/thecodest.co\\\/#organization\",\"name\":\"The Codest\",\"url\":\"https:\\\/\\\/thecodest.co\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/thecodest.co\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/thecodest.co\\\/app\\\/uploads\\\/2024\\\/03\\\/thecodest-logo.svg\",\"contentUrl\":\"https:\\\/\\\/thecodest.co\\\/app\\\/uploads\\\/2024\\\/03\\\/thecodest-logo.svg\",\"width\":144,\"height\":36,\"caption\":\"The Codest\"},\"image\":{\"@id\":\"https:\\\/\\\/thecodest.co\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/pl.linkedin.com\\\/company\\\/codest\",\"https:\\\/\\\/clutch.co\\\/profile\\\/codest\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/thecodest.co\\\/#\\\/schema\\\/person\\\/7e3fe41dfa4f4e41a7baad4c6e0d4f76\",\"name\":\"thecodest\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5dbfe6a1e8c86e432e8812759e34e6fe82ebac75119ae3237a6c1311fa19caf4?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5dbfe6a1e8c86e432e8812759e34e6fe82ebac75119ae3237a6c1311fa19caf4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5dbfe6a1e8c86e432e8812759e34e6fe82ebac75119ae3237a6c1311fa19caf4?s=96&d=mm&r=g\",\"caption\":\"thecodest\"},\"url\":\"https:\\\/\\\/thecodest.co\\\/en\\\/author\\\/thecodest\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"3 Useful HTML Tags You Might Not Know Even Existed - The Codest","description":"Nowadays, accessibility (A11y) is crucial on all stages of building custom software products.","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:\/\/thecodest.co\/en\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/","og_locale":"en_US","og_type":"article","og_title":"3 Useful HTML Tags You Might Not Know Even Existed","og_description":"Nowadays, accessibility (A11y) is crucial on all stages of building custom software products.","og_url":"https:\/\/thecodest.co\/en\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/","og_site_name":"The Codest","article_published_time":"2022-10-04T08:40:30+00:00","article_modified_time":"2026-03-11T05:54:57+00:00","og_image":[{"width":960,"height":540,"url":"https:\/\/thecodest.co\/app\/uploads\/2024\/05\/3_useful_html_tags_you_might_not_know_even_existed.png","type":"image\/png"}],"author":"thecodest","twitter_card":"summary_large_image","twitter_misc":{"Written by":"thecodest","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/#article","isPartOf":{"@id":"https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/"},"author":{"name":"thecodest","@id":"https:\/\/thecodest.co\/#\/schema\/person\/7e3fe41dfa4f4e41a7baad4c6e0d4f76"},"headline":"3 Useful HTML Tags You Might Not Know Even Existed","datePublished":"2022-10-04T08:40:30+00:00","dateModified":"2026-03-11T05:54:57+00:00","mainEntityOfPage":{"@id":"https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/"},"wordCount":526,"commentCount":0,"publisher":{"@id":"https:\/\/thecodest.co\/#organization"},"image":{"@id":"https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/#primaryimage"},"thumbnailUrl":"https:\/\/thecodest.co\/app\/uploads\/2024\/05\/3_useful_html_tags_you_might_not_know_even_existed.png","articleSection":["Software Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/","url":"https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/","name":"3 Useful HTML Tags You Might Not Know Even Existed - The Codest","isPartOf":{"@id":"https:\/\/thecodest.co\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/#primaryimage"},"image":{"@id":"https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/#primaryimage"},"thumbnailUrl":"https:\/\/thecodest.co\/app\/uploads\/2024\/05\/3_useful_html_tags_you_might_not_know_even_existed.png","datePublished":"2022-10-04T08:40:30+00:00","dateModified":"2026-03-11T05:54:57+00:00","description":"Nowadays, accessibility (A11y) is crucial on all stages of building custom software products.","breadcrumb":{"@id":"https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/#primaryimage","url":"https:\/\/thecodest.co\/app\/uploads\/2024\/05\/3_useful_html_tags_you_might_not_know_even_existed.png","contentUrl":"https:\/\/thecodest.co\/app\/uploads\/2024\/05\/3_useful_html_tags_you_might_not_know_even_existed.png","width":960,"height":540},{"@type":"BreadcrumbList","@id":"https:\/\/thecodest.co\/blog\/3-useful-html-tags-you-might-not-know-even-existed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thecodest.co\/"},{"@type":"ListItem","position":2,"name":"3 Useful HTML Tags You Might Not Know Even Existed"}]},{"@type":"WebSite","@id":"https:\/\/thecodest.co\/#website","url":"https:\/\/thecodest.co\/","name":"The Codest","description":"","publisher":{"@id":"https:\/\/thecodest.co\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thecodest.co\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/thecodest.co\/#organization","name":"The Codest","url":"https:\/\/thecodest.co\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thecodest.co\/#\/schema\/logo\/image\/","url":"https:\/\/thecodest.co\/app\/uploads\/2024\/03\/thecodest-logo.svg","contentUrl":"https:\/\/thecodest.co\/app\/uploads\/2024\/03\/thecodest-logo.svg","width":144,"height":36,"caption":"The Codest"},"image":{"@id":"https:\/\/thecodest.co\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/pl.linkedin.com\/company\/codest","https:\/\/clutch.co\/profile\/codest"]},{"@type":"Person","@id":"https:\/\/thecodest.co\/#\/schema\/person\/7e3fe41dfa4f4e41a7baad4c6e0d4f76","name":"thecodest","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5dbfe6a1e8c86e432e8812759e34e6fe82ebac75119ae3237a6c1311fa19caf4?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5dbfe6a1e8c86e432e8812759e34e6fe82ebac75119ae3237a6c1311fa19caf4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5dbfe6a1e8c86e432e8812759e34e6fe82ebac75119ae3237a6c1311fa19caf4?s=96&d=mm&r=g","caption":"thecodest"},"url":"https:\/\/thecodest.co\/en\/author\/thecodest\/"}]}},"_links":{"self":[{"href":"https:\/\/thecodest.co\/en\/wp-json\/wp\/v2\/posts\/2972","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thecodest.co\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thecodest.co\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thecodest.co\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/thecodest.co\/en\/wp-json\/wp\/v2\/comments?post=2972"}],"version-history":[{"count":13,"href":"https:\/\/thecodest.co\/en\/wp-json\/wp\/v2\/posts\/2972\/revisions"}],"predecessor-version":[{"id":8521,"href":"https:\/\/thecodest.co\/en\/wp-json\/wp\/v2\/posts\/2972\/revisions\/8521"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thecodest.co\/en\/wp-json\/wp\/v2\/media\/2973"}],"wp:attachment":[{"href":"https:\/\/thecodest.co\/en\/wp-json\/wp\/v2\/media?parent=2972"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thecodest.co\/en\/wp-json\/wp\/v2\/categories?post=2972"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thecodest.co\/en\/wp-json\/wp\/v2\/tags?post=2972"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}