{"id":11159,"date":"2024-01-30T21:35:32","date_gmt":"2024-01-30T16:35:32","guid":{"rendered":"https:\/\/codehim.com\/?p=11159"},"modified":"2024-02-03T13:14:19","modified_gmt":"2024-02-03T08:14:19","slug":"mix-blend-mode-fixed-button-using-css","status":"publish","type":"post","link":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/","title":{"rendered":"Mix-blend-mode Fixed Button Using CSS"},"content":{"rendered":"<p>This CSS code snippet helps you to create a mix-blen-mode fixed button. The button&#8217;s striking appearance is achieved through a carefully crafted, providing a distinctive look that stands out against the background. It is positioned at the bottom, offers a clear call-to-action for users.<\/p>\n<p>The code ensures a smooth transition effect when hovered, enhancing user interaction. Additionally, the typography and layout styling contribute to an overall modern and polished design.<\/p>\n<h2>How to Create Mix-blend-mode Fixed Button Using CSS<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/necolas.github.io\/normalize.css\/\" target=\"_blank\" rel=\"noopener\">Normalize CSS<\/a> by adding the following CDN link into the head tag of your HTML document.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/normalize\/5.0.0\/normalize.min.css\"&gt;<\/pre>\n<p>2. Create the necessary HTML structure. Inside the <code>&lt;main&gt;<\/code> tag, include a <code>&lt;section&gt;<\/code> with an <code>&lt;h1&gt;<\/code> for a header, followed by a series of <code>&lt;img&gt;<\/code> tags to showcase your content. Finally, add the &#8220;Order now&#8221; button using the <code>&lt;button&gt;<\/code> element.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;main&gt;\r\n  &lt;section&gt;\r\n    &lt;h1&gt;Scroll&lt;\/h1&gt;\r\n  &lt;\/section&gt;\r\n  &lt;img src=\"https:\/\/picsum.photos\/1280\/720?random=1\" alt=\"\"&gt;\r\n  &lt;img src=\"https:\/\/picsum.photos\/1280\/720?random=2\" alt=\"\"&gt;\r\n  &lt;img src=\"https:\/\/picsum.photos\/1280\/720?random=3\" alt=\"\"&gt;\r\n  &lt;img src=\"https:\/\/picsum.photos\/1280\/720?random=4\" alt=\"\"&gt;\r\n  &lt;img src=\"https:\/\/picsum.photos\/1280\/720?random=5\" alt=\"\"&gt;\r\n  &lt;img src=\"https:\/\/picsum.photos\/1280\/720?random=6\" alt=\"\"&gt;\r\n  &lt;img src=\"https:\/\/picsum.photos\/1280\/720?random=7\" alt=\"\"&gt;\r\n  &lt;img src=\"https:\/\/picsum.photos\/1280\/720?random=8\" alt=\"\"&gt;\r\n  &lt;img src=\"https:\/\/picsum.photos\/1280\/720?random=9\" alt=\"\"&gt;\r\n  &lt;img src=\"https:\/\/picsum.photos\/1280\/720?random=10\" alt=\"\"&gt;\r\n  &lt;button&gt;\r\n    Order now\r\n  &lt;\/button&gt;\r\n&lt;\/main&gt;<\/pre>\n<p>3. Add the CSS code to create the stylish fixed button. This includes styling for the body, button position, font, and the unique mix-blend-mode effect.<\/p>\n<pre class=\"prettyprint linenums lang-css\">@font-face {\r\n  font-family: \"Geist Sans\";\r\n  src: url(\"https:\/\/assets.codepen.io\/605876\/GeistVF.ttf\") format(\"truetype\");\r\n}\r\n\r\n\r\n* {\r\n  box-sizing: border-box;\r\n}\r\n\r\nbody {\r\n  background: hsl(0 0% 98%);\r\n  font-family: \"Geist Sans\", sans-serif;\r\n  overflow-x: hidden;\r\n}\r\n\r\nbutton {\r\n  position: fixed;\r\n  bottom: 3rem;\r\n  left: 50%;\r\n  translate: -50% 0;\r\n  font-size: 1.5rem;\r\n  font-family: \"Geist Sans\", sans-serif;\r\n  font-weight: 80;\r\n  padding: 1rem 4rem;\r\n  border-radius: 6px;\r\n  border: 0;\r\n  mix-blend-mode: difference;\r\n  transition: filter 0.2s;\r\n  background: white;\r\n  color: black;\r\n}\r\n\r\nbutton::before {\r\n  content: \"Order now\";\r\n  position: absolute;\r\n  inset: 0;\r\n  display: grid;\r\n  place-items: center;\r\n  z-index: 2;\r\n  mix-blend-mode: none;\r\n}\r\n\r\nbutton::after {\r\n  content: \"\";\r\n  left: 8%;\r\n  right: 8%;\r\n  height: 12%;\r\n  top: 130%;\r\n  background: white;\r\n  position: absolute;\r\n  border-radius: 100px;\r\n  mix-blend-mode: difference;\r\n}\r\n\r\nbutton:is(:hover, :focus-visible) {\r\n  filter: brightness(0.5);\r\n}\r\n\r\nh1 {\r\n  font-weight: 120;\r\n  background: linear-gradient(hsl(0 0% 10%), hsl(0 0% 60%));\r\n  background-clip: text;\r\n  -webkit-background-clip: text;\r\n  color: transparent;\r\n}\r\n\r\nsection {\r\n  height: 100vh;\r\n  display: grid;\r\n  place-items: center;\r\n  font-size: clamp(2rem, 4vw + 1rem, 8rem);\r\n}\r\n\r\nmain {\r\n  display: grid;\r\n  gap: 8rem;\r\n  justify-items: center;\r\n  padding-bottom: 50vh;\r\n}\r\n\r\nimg {\r\n  height: 50vh;\r\n}\r\n\r\nimg:nth-of-type(even) {\r\n  translate: -25% 0;\r\n}\r\n\r\nimg:nth-of-type(odd) {\r\n  translate: 25% 0;\r\n}<\/pre>\n<p>Customize the code to match your website&#8217;s theme and content. Test the button&#8217;s appearance and behavior, ensuring that it aligns with your design preferences.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully created a Mix-blend-mode Fixed Button Using CSS. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This CSS code snippet helps you to create a mix-blen-mode fixed button. The button&#8217;s striking appearance is achieved through a&#8230;<\/p>\n","protected":false},"author":1,"featured_media":11188,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[63],"tags":[],"class_list":["post-11159","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html5-css3"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Mix-blend-mode Fixed Button Using CSS &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Mix-blend-mode Fixed Button Using CSS. 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\/html5-css3\/mix-blend-mode-fixed-button-using-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mix-blend-mode Fixed Button Using CSS &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Mix-blend-mode Fixed Button Using CSS. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/\" \/>\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-30T16:35:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-03T08:14:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Mix-blend-mode-Fixed-Button-Using-CSS.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\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Mix-blend-mode Fixed Button Using CSS\",\"datePublished\":\"2024-01-30T16:35:32+00:00\",\"dateModified\":\"2024-02-03T08:14:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/\"},\"wordCount\":215,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Mix-blend-mode-Fixed-Button-Using-CSS.png\",\"articleSection\":[\"HTML5 &amp; CSS3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/\",\"url\":\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/\",\"name\":\"Mix-blend-mode Fixed Button Using CSS &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Mix-blend-mode-Fixed-Button-Using-CSS.png\",\"datePublished\":\"2024-01-30T16:35:32+00:00\",\"dateModified\":\"2024-02-03T08:14:19+00:00\",\"description\":\"Here is a free code snippet to create a Mix-blend-mode Fixed Button Using CSS. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Mix-blend-mode-Fixed-Button-Using-CSS.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Mix-blend-mode-Fixed-Button-Using-CSS.png\",\"width\":1280,\"height\":960,\"caption\":\"Mix-blend-mode Fixed Button Using CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML5 &amp; CSS3\",\"item\":\"https:\/\/codehim.com\/category\/html5-css3\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Mix-blend-mode Fixed Button Using CSS\"}]},{\"@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":"Mix-blend-mode Fixed Button Using CSS &#8212; CodeHim","description":"Here is a free code snippet to create a Mix-blend-mode Fixed Button Using CSS. 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\/html5-css3\/mix-blend-mode-fixed-button-using-css\/","og_locale":"en_US","og_type":"article","og_title":"Mix-blend-mode Fixed Button Using CSS &#8212; CodeHim","og_description":"Here is a free code snippet to create a Mix-blend-mode Fixed Button Using CSS. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-30T16:35:32+00:00","article_modified_time":"2024-02-03T08:14:19+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Mix-blend-mode-Fixed-Button-Using-CSS.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\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Mix-blend-mode Fixed Button Using CSS","datePublished":"2024-01-30T16:35:32+00:00","dateModified":"2024-02-03T08:14:19+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/"},"wordCount":215,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Mix-blend-mode-Fixed-Button-Using-CSS.png","articleSection":["HTML5 &amp; CSS3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/","url":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/","name":"Mix-blend-mode Fixed Button Using CSS &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Mix-blend-mode-Fixed-Button-Using-CSS.png","datePublished":"2024-01-30T16:35:32+00:00","dateModified":"2024-02-03T08:14:19+00:00","description":"Here is a free code snippet to create a Mix-blend-mode Fixed Button Using CSS. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Mix-blend-mode-Fixed-Button-Using-CSS.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Mix-blend-mode-Fixed-Button-Using-CSS.png","width":1280,"height":960,"caption":"Mix-blend-mode Fixed Button Using CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/html5-css3\/mix-blend-mode-fixed-button-using-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"HTML5 &amp; CSS3","item":"https:\/\/codehim.com\/category\/html5-css3\/"},{"@type":"ListItem","position":3,"name":"Mix-blend-mode Fixed Button Using CSS"}]},{"@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":425,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/11159","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=11159"}],"version-history":[{"count":5,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/11159\/revisions"}],"predecessor-version":[{"id":11253,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/11159\/revisions\/11253"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/11188"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=11159"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=11159"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=11159"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}