{"id":8711,"date":"2024-01-20T17:55:00","date_gmt":"2024-01-20T17:55:00","guid":{"rendered":"https:\/\/codehim.com\/?p=8711"},"modified":"2024-01-22T15:55:44","modified_gmt":"2024-01-22T10:55:44","slug":"bootstrap-5-floating-action-button","status":"publish","type":"post","link":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/","title":{"rendered":"Bootstrap 5 Floating Action Button"},"content":{"rendered":"<p>This code snippet adds a set of floating action buttons to your Bootstrap 5 project. Placed in the bottom right corner, a primary button expands to reveal secondary action buttons for quick access to various functions. Helpful for enhancing user interaction and navigation.<\/p>\n<p>You can use this code in your Bootstrap 5 projects to create a sleek floating action button menu. The code is easy to integrate and customize, making it a valuable addition to your web applications.<\/p>\n<h2>How to Create Bootstrap 5 Floating Action Button<\/h2>\n<p>1. First, in the <code>&lt;head&gt;<\/code> section of your HTML file, include the <a href=\"https:\/\/fonts.google.com\/icons\" target=\"_blank\" rel=\"noopener\">Material Icons<\/a> and <a href=\"https:\/\/getbootstrap.com\/docs\/5.0\/getting-started\/introduction\/\" target=\"_blank\" rel=\"noopener\">Bootstrap 5 CSS<\/a> dependencies using the provided CDN links. This ensures that the required styles and icons are loaded.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;!-- Material Icons --&gt;\r\n&lt;link rel='stylesheet' href='https:\/\/fonts.googleapis.com\/icon?family=Material+Icons'&gt;\r\n\r\n&lt;!-- Bootstrap 5 CSS --&gt;\r\n&lt;link href=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.0.2\/dist\/css\/bootstrap.min.css\" rel=\"stylesheet\" integrity=\"sha384-EVSTQN3\/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC\" crossorigin=\"anonymous\"&gt;<\/pre>\n<p>2. Inside your HTML body, create a container for the floating action button (FAB) and its sub-buttons. You can customize the content and links within the sub-buttons to suit your project&#8217;s needs.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;h2&gt; Look at Bottom Right Corner &lt;\/h2&gt;\r\n&lt;p&gt; This page demonstrate floating action buttons for Bootstrap 5 projects. &lt;\/p&gt;\r\n\r\n&lt;div class=\"fab-container\"&gt;\r\n  &lt;div class=\"fab shadow\"&gt;\r\n    &lt;div class=\"fab-content\"&gt;\r\n      &lt;span class=\"material-icons\"&gt;support_agent&lt;\/span&gt;\r\n    &lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"sub-button shadow\"&gt;\r\n    &lt;a href=\"google.com\" target=\"_blank\"&gt;\r\n      &lt;span class=\"material-icons\"&gt;phone&lt;\/span&gt;\r\n    &lt;\/a&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"sub-button shadow\"&gt;\r\n    &lt;a href=\"google.com\" target=\"_blank\"&gt;\r\n      &lt;span class=\"material-icons\"&gt;mail_outline&lt;\/span&gt;\r\n    &lt;\/a&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"sub-button shadow\"&gt;\r\n    &lt;a href=\"google.com\" target=\"_blank\"&gt;\r\n      &lt;span class=\"material-icons\"&gt;language&lt;\/span&gt;\r\n    &lt;\/a&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"sub-button shadow\"&gt;\r\n    &lt;a href=\"google.com\" target=\"_blank\"&gt;\r\n      &lt;span class=\"material-icons\"&gt;help_outline&lt;\/span&gt;\r\n    &lt;\/a&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>3. Include the following CSS code in your project. This CSS code is responsible for the positioning and animation of the FAB and its sub-buttons. It ensures that the FAB expands when hovered, revealing the sub-buttons.<\/p>\n<pre class=\"prettyprint linenums lang-css\">.fab-container {\r\n  display: flex;\r\n  flex-direction: column;\r\n  justify-content: flex-end;\r\n  align-items: center;\r\n  user-select: none;\r\n  position: absolute;\r\n  bottom: 30px;\r\n  right: 30px;\r\n}\r\n.fab-container:hover {\r\n  height: 100%;\r\n}\r\n.fab-container:hover .sub-button:nth-child(2) {\r\n  transform: translateY(-80px);\r\n}\r\n.fab-container:hover .sub-button:nth-child(3) {\r\n  transform: translateY(-140px);\r\n}\r\n.fab-container:hover .sub-button:nth-child(4) {\r\n  transform: translateY(-200px);\r\n}\r\n.fab-container:hover .sub-button:nth-child(5) {\r\n  transform: translateY(-260px);\r\n}\r\n.fab-container:hover .sub-button:nth-child(6) {\r\n  transform: translateY(-320px);\r\n}\r\n.fab-container .fab {\r\n  position: relative;\r\n  height: 70px;\r\n  width: 70px;\r\n  background-color: #4ba2ff;\r\n  border-radius: 50%;\r\n  z-index: 2;\r\n}\r\n.fab-container .fab::before {\r\n  content: \" \";\r\n  position: absolute;\r\n  bottom: 0;\r\n  right: 0;\r\n  height: 35px;\r\n  width: 35px;\r\n  background-color: inherit;\r\n  border-radius: 0 0 10px 0;\r\n  z-index: -1;\r\n}\r\n.fab-container .fab .fab-content {\r\n  display: flex;\r\n  align-items: center;\r\n  justify-content: center;\r\n  height: 100%;\r\n  width: 100%;\r\n  border-radius: 50%;\r\n}\r\n.fab-container .fab .fab-content .material-icons {\r\n  color: white;\r\n  font-size: 48px;\r\n}\r\n.fab-container .sub-button {\r\n  position: absolute;\r\n  display: flex;\r\n  align-items: center;\r\n  justify-content: center;\r\n  bottom: 10px;\r\n  right: 10px;\r\n  height: 50px;\r\n  width: 50px;\r\n  background-color: #4ba2ff;\r\n  border-radius: 50%;\r\n  transition: all 0.3s ease;\r\n}\r\n.fab-container .sub-button:hover {\r\n  cursor: pointer;\r\n}\r\n.fab-container .sub-button .material-icons {\r\n  color: white;\r\n  padding-top: 6px;\r\n}<\/pre>\n<p>Customize the FAB icons, colors, and links as per your project requirements. You can change the icons by modifying the <code>&lt;span class=\"material-icons\"&gt;<\/code> tags and adjust the colors by updating the background-color properties in the CSS.<\/p>\n<p>That&#8217;s it! You&#8217;ve successfully implemented the &#8220;Bootstrap 5 Floating Action Button&#8221; in your project. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code snippet adds a set of floating action buttons to your Bootstrap 5 project. Placed in the bottom right&#8230;<\/p>\n","protected":false},"author":1,"featured_media":8720,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[123],"tags":[],"class_list":["post-8711","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bootstrap"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Bootstrap 5 Floating Action Button &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Bootstrap 5 Floating Action Button. You can view demo and download the source code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bootstrap 5 Floating Action Button &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Bootstrap 5 Floating Action Button. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-20T17:55:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:55:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Floating-Action-Button.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Bootstrap 5 Floating Action Button\",\"datePublished\":\"2024-01-20T17:55:00+00:00\",\"dateModified\":\"2024-01-22T10:55:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/\"},\"wordCount\":245,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Floating-Action-Button.png\",\"articleSection\":[\"Bootstrap\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/\",\"url\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/\",\"name\":\"Bootstrap 5 Floating Action Button &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Floating-Action-Button.png\",\"datePublished\":\"2024-01-20T17:55:00+00:00\",\"dateModified\":\"2024-01-22T10:55:44+00:00\",\"description\":\"Here is a free code snippet to create a Bootstrap 5 Floating Action Button. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Floating-Action-Button.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Floating-Action-Button.png\",\"width\":1280,\"height\":960,\"caption\":\"Bootstrap 5 Floating Action Button\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bootstrap\",\"item\":\"https:\/\/codehim.com\/category\/bootstrap\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Bootstrap 5 Floating Action Button\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Bootstrap 5 Floating Action Button &#8212; CodeHim","description":"Here is a free code snippet to create a Bootstrap 5 Floating Action Button. You can view demo and download the source code.","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:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/","og_locale":"en_US","og_type":"article","og_title":"Bootstrap 5 Floating Action Button &#8212; CodeHim","og_description":"Here is a free code snippet to create a Bootstrap 5 Floating Action Button. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-20T17:55:00+00:00","article_modified_time":"2024-01-22T10:55:44+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Floating-Action-Button.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Bootstrap 5 Floating Action Button","datePublished":"2024-01-20T17:55:00+00:00","dateModified":"2024-01-22T10:55:44+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/"},"wordCount":245,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Floating-Action-Button.png","articleSection":["Bootstrap"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/","url":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/","name":"Bootstrap 5 Floating Action Button &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Floating-Action-Button.png","datePublished":"2024-01-20T17:55:00+00:00","dateModified":"2024-01-22T10:55:44+00:00","description":"Here is a free code snippet to create a Bootstrap 5 Floating Action Button. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Floating-Action-Button.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Floating-Action-Button.png","width":1280,"height":960,"caption":"Bootstrap 5 Floating Action Button"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-floating-action-button\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Bootstrap","item":"https:\/\/codehim.com\/category\/bootstrap\/"},{"@type":"ListItem","position":3,"name":"Bootstrap 5 Floating Action Button"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":12341,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8711","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=8711"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8711\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/8720"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=8711"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=8711"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=8711"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}