{"id":921,"date":"2022-06-21T05:21:45","date_gmt":"2022-06-21T04:21:45","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=921"},"modified":"2022-11-13T14:18:47","modified_gmt":"2022-11-13T13:18:47","slug":"css-dropdown-menu","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/","title":{"rendered":"CSS Dropdown Menu"},"content":{"rendered":"\n<p>In this tutorial, we are going to create a CSS dropdown menu that will reveal its items on hover.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"248\" height=\"266\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-06-21-at-05.04.55.png\" alt=\"\" class=\"wp-image-922\"\/><figcaption class=\"wp-element-caption\">CSS dropdown menu<\/figcaption><\/figure>\n\n\n\n<p>Let&#8217;s get started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-1-add-html-code\">1. Add HTML Code<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;!DOCTYPE html&gt;\n&lt;html lang=\"en\" dir=\"ltr\"&gt;\n  &lt;head&gt;\n    &lt;meta charset=\"utf-8\"&gt;\n    &lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/6.1.1\/css\/all.min.css\" integrity=\"sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==\" crossorigin=\"anonymous\" referrerpolicy=\"no-referrer\" \/&gt;\n    &lt;link rel=\"stylesheet\" href=\".\/assets\/css\/main.css\" \/&gt;\n    &lt;title&gt;CSS DROPDOWN&lt;\/title&gt;\n  &lt;\/head&gt;\n  &lt;body&gt;\n    &lt;div class=\"dropdown\"&gt;\n      &lt;span class=\"label\"&gt;&lt;i class=\"fa-solid fa-link\"&gt;&lt;\/i&gt;Social Links&lt;\/span&gt;\n      &lt;ul class=\"items\"&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;&lt;i class=\"fa-brands fa-github\"&gt;&lt;\/i&gt;Github&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;&lt;i class=\"fa-brands fa-instagram\"&gt;&lt;\/i&gt;Instagram&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;&lt;i class=\"fa-brands fa-discord\"&gt;&lt;\/i&gt;Discord&lt;\/a&gt;&lt;\/li&gt;\n        &lt;li&gt;&lt;a href=\"#\"&gt;&lt;i class=\"fa-brands fa-youtube\"&gt;&lt;\/i&gt;Youtube&lt;\/a&gt;&lt;\/li&gt;\n      &lt;\/ul&gt;\n    &lt;\/div&gt;\n  &lt;\/body&gt;\n&lt;\/html&gt;\n<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-2-add-css-code\">2. Add CSS Code<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"css\" class=\"language-css\">body {\n  margin: 0;\n  font-family: \"Poppins\", Arial, sans-serif;\n  background: #1f2023;\n  color: #fff;\n  display: grid;\n  place-items: center;\n  height: 100vh;\n}\nul {\n  list-style: none;\n  margin-block-start: 0;\n  margin-block-end: 0;\n  padding-inline-start: 0;\n}\n.dropdown {\n  position: relative;\n}\n.label {\n  cursor: pointer;\n  background: rgb(40, 40, 40);\n  padding: 0.8rem 1rem;\n  width: 100%;\n  display: block;\n  box-sizing: border-box;\n  transition: : all 0.3s;\n}\n.items a {\n  color: #fff;\n  display: flex;\n  align-items: center;\n  padding: 0.5rem 1rem;\n  text-decoration: none;\n  transition: all 0.2s;\n}\n.items a:hover{\n  border-left: 5px solid;\n  background: rgb(37, 37, 37);\n}\n.fa-brands,\n.fa-solid {\n  margin-right: 10px;\n}\n.items {\n  background: rgb(52, 52, 52);\n  opacity: 0;\n  visibility: hidden;\n  max-width: 100%;\n  height: 0;\n  position: absolute;\n  top: 48px;\n  transform-origin: top;\n  transform: scale(0);\n  transition: transform 0.3s;\n}\n.items::before {\n  content: \"\";\n  position: absolute;\n  width: 15px;\n  height: 15px;\n  background: rgb(52, 52, 52);\n  transform: : rotate(45deg);\n  top: -7px;\n  left: 20px;\n  z-index: -1;\n}\n.dropdown:hover &gt; .items {\n  opacity: 1;\n  visibility: visible;\n  height: unset;\n  transform: scale(1);\n}\n.dropdown:hover &gt; .label{\n  background: rgb(255, 115, 0);\n}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-result\">Result:<\/h2>\n\n\n\n<p>Here&#8217;s the result of our code<\/p>\n\n\n\n<figure class=\"wp-block-video\"><video height=\"900\" style=\"aspect-ratio: 1440 \/ 900;\" width=\"1440\" controls poster=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-06-21-at-05.04.55.png\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/06\/Screen-Recording-2022-06-21-at-04.48.43.mov\"><\/video><figcaption class=\"wp-element-caption\">CSS Dropdown Menu on hover<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>Here&#8217;s how you can add a hoverable CSS dropdown menu in your project.<\/p>\n\n\n\n<p>Let me know what you think.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-cool-css-tricks-you-should-know\"><a href=\"https:\/\/codeflarelimited.com\/blog\/cool-css-tricks-you-should-know\/\" target=\"_blank\" rel=\"noreferrer noopener\">Cool CSS Tricks You Should Know<\/a><\/h2>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we are going to create a CSS dropdown menu that will reveal its items on<\/p>\n","protected":false},"author":1,"featured_media":1079,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[32],"tags":[],"class_list":["post-921","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cascading-style-sheet"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CSS Dropdown Menu<\/title>\n<meta name=\"description\" content=\"In this tutorial, we are going to create a CSS dropdown menu that will reveal its items on hover\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CSS Dropdown Menu\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we are going to create a CSS dropdown menu that will reveal its items on hover\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2022-06-21T04:21:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-13T13:18:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-11-13-at-14.16.33.png\" \/>\n\t<meta property=\"og:image:width\" content=\"929\" \/>\n\t<meta property=\"og:image:height\" content=\"483\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"CSS Dropdown Menu\",\"datePublished\":\"2022-06-21T04:21:45+00:00\",\"dateModified\":\"2022-11-13T13:18:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/\"},\"wordCount\":72,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/Screenshot-2022-11-13-at-14.16.33.png\",\"articleSection\":[\"Cascading style sheet\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/\",\"name\":\"CSS Dropdown Menu\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/Screenshot-2022-11-13-at-14.16.33.png\",\"datePublished\":\"2022-06-21T04:21:45+00:00\",\"dateModified\":\"2022-11-13T13:18:47+00:00\",\"description\":\"In this tutorial, we are going to create a CSS dropdown menu that will reveal its items on hover\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/Screenshot-2022-11-13-at-14.16.33.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/Screenshot-2022-11-13-at-14.16.33.png\",\"width\":929,\"height\":483,\"caption\":\"css dropdown\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/css-dropdown-menu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cascading style sheet\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/cascading-style-sheet\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"CSS Dropdown Menu\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CSS Dropdown Menu","description":"In this tutorial, we are going to create a CSS dropdown menu that will reveal its items on hover","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:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/","og_locale":"en_US","og_type":"article","og_title":"CSS Dropdown Menu","og_description":"In this tutorial, we are going to create a CSS dropdown menu that will reveal its items on hover","og_url":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2022-06-21T04:21:45+00:00","article_modified_time":"2022-11-13T13:18:47+00:00","og_image":[{"width":929,"height":483,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-11-13-at-14.16.33.png","type":"image\/png"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"CSS Dropdown Menu","datePublished":"2022-06-21T04:21:45+00:00","dateModified":"2022-11-13T13:18:47+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/"},"wordCount":72,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-11-13-at-14.16.33.png","articleSection":["Cascading style sheet"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/","url":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/","name":"CSS Dropdown Menu","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-11-13-at-14.16.33.png","datePublished":"2022-06-21T04:21:45+00:00","dateModified":"2022-11-13T13:18:47+00:00","description":"In this tutorial, we are going to create a CSS dropdown menu that will reveal its items on hover","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-11-13-at-14.16.33.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-11-13-at-14.16.33.png","width":929,"height":483,"caption":"css dropdown"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/css-dropdown-menu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Cascading style sheet","item":"https:\/\/codeflarelimited.com\/blog\/cascading-style-sheet\/"},{"@type":"ListItem","position":3,"name":"CSS Dropdown Menu"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/06\/Screenshot-2022-11-13-at-14.16.33.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/921","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=921"}],"version-history":[{"count":2,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/921\/revisions"}],"predecessor-version":[{"id":1080,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/921\/revisions\/1080"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/1079"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=921"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=921"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=921"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}