{"id":11136,"date":"2024-01-27T21:35:29","date_gmt":"2024-01-27T16:35:29","guid":{"rendered":"https:\/\/codehim.com\/?p=11136"},"modified":"2024-02-03T13:19:53","modified_gmt":"2024-02-03T08:19:53","slug":"squishy-toggle-buttons-using-pure-css","status":"publish","type":"post","link":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/","title":{"rendered":"Squishy Toggle Buttons Using Pure CSS"},"content":{"rendered":"<p>This code snippet helps you to create squishy toggle buttons using pure CSS. The buttons respond dynamically to user interaction, delivering a visually appealing design. Designed with CSS, it offers an easy way to enhance your website&#8217;s user interface. Incorporating elegant shadows and subtle transitions, these buttons bring a modern touch to your web projects. Its perfect for adding interactive elements without the need for complex JavaScript.<\/p>\n<h2>How to Create Squishy Toggle Buttons Using Pure CSS<\/h2>\n<p>1. First of all, load <a href=\"https:\/\/meyerweb.com\/eric\/tools\/css\/reset\/\" target=\"_blank\" rel=\"noopener\">Reset CSS<\/a> and <a href=\"https:\/\/github.com\/LeaVerou\/prefixfree\" target=\"_blank\" rel=\"noopener\">Prefixfree JS<\/a> by adding the following CDN links 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\/meyer-reset\/2.0\/reset.min.css\"&gt;\r\n&lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/prefixfree\/1.0.7\/prefixfree.min.js\"&gt;&lt;\/script&gt;<\/pre>\n<p>2. Include the necessary HTML structure to create the toggle buttons. Use the following code snippet inside the <code>&lt;div class=\"container\"&gt;<\/code> element.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"container\"&gt;\r\n  &lt;div class=\"toggle\"&gt;\r\n    &lt;input type=\"checkbox\"&gt;\r\n    &lt;span class=\"button\"&gt;&lt;\/span&gt;\r\n    &lt;span class=\"label\"&gt;+&lt;\/span&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"toggle\"&gt;\r\n    &lt;input type=\"checkbox\" checked&gt;\r\n    &lt;span class=\"button\"&gt;&lt;\/span&gt;\r\n    &lt;span class=\"label\"&gt;\u2013&lt;\/span&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;<\/pre>\n<p>3. Copy and paste the CSS code into your stylesheets or in a <code>&lt;style&gt;<\/code> tag within your HTML file. This CSS code defines the appearance and animations of the toggle buttons.<\/p>\n<pre class=\"prettyprint linenums lang-css\">@import url(https:\/\/fonts.googleapis.com\/css?family=Lato:700);\r\nhtml, body {\r\n  font-family: \"Lato\", sans-serif;\r\n  background: url(https:\/\/s.cdpn.io\/1715\/dark_stripes.png);\r\n  text-align: center;\r\n  height: 100%;\r\n}\r\n\r\n.container {\r\n  text-align: center;\r\n  position: absolute;\r\n  margin-top: -80px;\r\n  width: 100%;\r\n  top: 50%;\r\n}\r\n\r\n.toggle {\r\n  margin: 4px;\r\n  display: inline-block;\r\n}\r\n\r\n.toggle {\r\n  box-shadow: inset 0 0 35px 5px rgba(0, 0, 0, 0.25), inset 0 2px 1px 1px rgba(255, 255, 255, 0.9), inset 0 -2px 1px 0 rgba(0, 0, 0, 0.25);\r\n  border-radius: 8px;\r\n  background: #ccd0d4;\r\n  position: relative;\r\n  height: 140px;\r\n  width: 140px;\r\n}\r\n.toggle:before {\r\n  box-shadow: 0 0 17.5px 8.75px #fff;\r\n  border-radius: 118.3px;\r\n  background: #fff;\r\n  position: absolute;\r\n  margin-left: -50.4px;\r\n  margin-top: -50.4px;\r\n  opacity: 0.2;\r\n  content: \"\";\r\n  height: 100.8px;\r\n  width: 100.8px;\r\n  left: 50%;\r\n  top: 50%;\r\n}\r\n.toggle .button {\r\n  -webkit-filter: blur(1px);\r\n  -moz-filter: blur(1px);\r\n  filter: blur(1px);\r\n  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);\r\n  box-shadow: 0 15px 25px -4px rgba(0, 0, 0, 0.5), inset 0 -3px 4px -1px rgba(0, 0, 0, 0.2), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 3px 4px -1px rgba(255, 255, 255, 0.2), inset 0 0 5px 1px rgba(255, 255, 255, 0.8), inset 0 20px 30px 0 rgba(255, 255, 255, 0.2);\r\n  border-radius: 96.32px;\r\n  position: absolute;\r\n  background: #ccd0d4;\r\n  margin-left: -48.16px;\r\n  margin-top: -48.16px;\r\n  display: block;\r\n  height: 96.32px;\r\n  width: 96.32px;\r\n  left: 50%;\r\n  top: 50%;\r\n}\r\n.toggle .label {\r\n  transition: color 300ms ease-out;\r\n  text-shadow: 1px 1px 3px #ccd0d4, 0 0 0 rgba(0, 0, 0, 0.8), 1px 1px 4px #fff;\r\n  line-height: 139px;\r\n  text-align: center;\r\n  position: absolute;\r\n  font-weight: 700;\r\n  font-size: 42px;\r\n  display: block;\r\n  opacity: 0.9;\r\n  height: 100%;\r\n  width: 100%;\r\n  color: rgba(0, 0, 0, 0.4);\r\n}\r\n.toggle input {\r\n  opacity: 0;\r\n  position: absolute;\r\n  cursor: pointer;\r\n  z-index: 1;\r\n  height: 100%;\r\n  width: 100%;\r\n  left: 0;\r\n  top: 0;\r\n}\r\n.toggle input:active ~ .button {\r\n  box-shadow: 0 15px 25px -4px rgba(0, 0, 0, 0.4), inset 0 -8px 30px 1px rgba(255, 255, 255, 0.9), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 8px 25px 0 rgba(0, 0, 0, 0.4), inset 0 0 10px 1px rgba(255, 255, 255, 0.6);\r\n}\r\n.toggle input:active ~ .label {\r\n  font-size: 40px;\r\n  color: rgba(0, 0, 0, 0.45);\r\n}\r\n.toggle input:checked ~ .button {\r\n  box-shadow: 0 15px 25px -4px rgba(0, 0, 0, 0.4), inset 0 -8px 25px -1px rgba(255, 255, 255, 0.9), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 8px 20px 0 rgba(0, 0, 0, 0.2), inset 0 0 5px 1px rgba(255, 255, 255, 0.6);\r\n}\r\n.toggle input:checked ~ .label {\r\n  font-size: 40px;\r\n  color: rgba(0, 0, 0, 0.4);\r\n}<\/pre>\n<p>Feel free to customize the buttons by adjusting the CSS properties such as colors, sizes, or shadows. Experiment with the code to match your website&#8217;s design.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully created squishy toggle buttons on your website\/app. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code snippet helps you to create squishy toggle buttons using pure CSS. The buttons respond dynamically to user interaction,&#8230;<\/p>\n","protected":false},"author":1,"featured_media":11222,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[97],"tags":[],"class_list":["post-11136","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-text-input"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Squishy Toggle Buttons Using Pure CSS &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Squishy Toggle Buttons Using Pure 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\/text-input\/squishy-toggle-buttons-using-pure-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Squishy Toggle Buttons Using Pure CSS &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Squishy Toggle Buttons Using Pure CSS. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-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-27T16:35:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-03T08:19:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Squishy-Toggle-Buttons-Using-Pure-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\/text-input\/squishy-toggle-buttons-using-pure-css\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Squishy Toggle Buttons Using Pure CSS\",\"datePublished\":\"2024-01-27T16:35:29+00:00\",\"dateModified\":\"2024-02-03T08:19:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/\"},\"wordCount\":207,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Squishy-Toggle-Buttons-Using-Pure-CSS.png\",\"articleSection\":[\"Text &amp; Input\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/\",\"url\":\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/\",\"name\":\"Squishy Toggle Buttons Using Pure CSS &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Squishy-Toggle-Buttons-Using-Pure-CSS.png\",\"datePublished\":\"2024-01-27T16:35:29+00:00\",\"dateModified\":\"2024-02-03T08:19:53+00:00\",\"description\":\"Here is a free code snippet to create a Squishy Toggle Buttons Using Pure CSS. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Squishy-Toggle-Buttons-Using-Pure-CSS.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Squishy-Toggle-Buttons-Using-Pure-CSS.png\",\"width\":1280,\"height\":960,\"caption\":\"Squishy Toggle Buttons Using Pure CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Text &amp; Input\",\"item\":\"https:\/\/codehim.com\/category\/text-input\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Squishy Toggle Buttons Using Pure 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":"Squishy Toggle Buttons Using Pure CSS &#8212; CodeHim","description":"Here is a free code snippet to create a Squishy Toggle Buttons Using Pure 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\/text-input\/squishy-toggle-buttons-using-pure-css\/","og_locale":"en_US","og_type":"article","og_title":"Squishy Toggle Buttons Using Pure CSS &#8212; CodeHim","og_description":"Here is a free code snippet to create a Squishy Toggle Buttons Using Pure CSS. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-27T16:35:29+00:00","article_modified_time":"2024-02-03T08:19:53+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Squishy-Toggle-Buttons-Using-Pure-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\/text-input\/squishy-toggle-buttons-using-pure-css\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Squishy Toggle Buttons Using Pure CSS","datePublished":"2024-01-27T16:35:29+00:00","dateModified":"2024-02-03T08:19:53+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/"},"wordCount":207,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Squishy-Toggle-Buttons-Using-Pure-CSS.png","articleSection":["Text &amp; Input"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/","url":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/","name":"Squishy Toggle Buttons Using Pure CSS &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Squishy-Toggle-Buttons-Using-Pure-CSS.png","datePublished":"2024-01-27T16:35:29+00:00","dateModified":"2024-02-03T08:19:53+00:00","description":"Here is a free code snippet to create a Squishy Toggle Buttons Using Pure CSS. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Squishy-Toggle-Buttons-Using-Pure-CSS.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Squishy-Toggle-Buttons-Using-Pure-CSS.png","width":1280,"height":960,"caption":"Squishy Toggle Buttons Using Pure CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/text-input\/squishy-toggle-buttons-using-pure-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Text &amp; Input","item":"https:\/\/codehim.com\/category\/text-input\/"},{"@type":"ListItem","position":3,"name":"Squishy Toggle Buttons Using Pure 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":475,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/11136","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=11136"}],"version-history":[{"count":2,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/11136\/revisions"}],"predecessor-version":[{"id":11234,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/11136\/revisions\/11234"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/11222"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=11136"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=11136"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=11136"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}