{"id":10126,"date":"2024-01-19T18:14:00","date_gmt":"2024-01-19T18:14:00","guid":{"rendered":"https:\/\/codehim.com\/?p=10126"},"modified":"2024-01-22T16:16:45","modified_gmt":"2024-01-22T11:16:45","slug":"google-map-integration-using-material-design","status":"publish","type":"post","link":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/","title":{"rendered":"Google Map Integration Using Material Design"},"content":{"rendered":"<p>This code styles elements for a Google Map integration using Material Design. It customizes various components&#8217; appearance and animations, like buttons and headers. The JavaScript part adds toggle effects to certain elements, enhancing visual transitions. This code aims to offer a Material Design-themed interface for Google Maps integration.<\/p>\n<h2>How to Integrate Google Map Using Material Design<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/modernizr.com\/\" target=\"_blank\" rel=\"noopener\">Modernizr JS<\/a> and <a href=\"https:\/\/meyerweb.com\/eric\/tools\/css\/reset\/\" target=\"_blank\" rel=\"noopener\">Reset CSS<\/a> by adding the following CDN links into the head tag of your HTML document.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/modernizr\/2.8.3\/modernizr.min.js\" type=\"text\/javascript\"&gt;&lt;\/script&gt;\r\n&lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/meyer-reset\/2.0\/reset.min.css\"&gt;\r\n<\/pre>\n<p>2. Create your HTML structure for the Google Maps integration as follows:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"header\"&gt;\r\n  &lt;h1&gt;Materiella&lt;\/h1&gt;\r\n&lt;\/div&gt;\r\n&lt;div class=\"item\"&gt;\r\n    &lt;div class=\"primary\"&gt;\r\n      &lt;div class=\"spoiler\"&gt;\r\n        &lt;div&gt;Your&lt;\/div&gt;\r\n        &lt;div&gt;Present&lt;\/div&gt;\r\n      &lt;\/div&gt;\r\n      &lt;iframe class=\"present\" src=\"https:\/\/www.google.com\/maps\/embed?pb=!1m10!1m8!1m3!1d178688.38038032036!2d-1.0667825132755415!3d45.59042526411341!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2sde!4v1411841033913\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\"&gt;&lt;\/iframe&gt;\r\n    &lt;\/div&gt;\r\n    &lt;div class=\"title\"&gt;\r\n      &lt;h2&gt;Click to open ...&lt;\/h2&gt;\r\n      &lt;div class=\"circle-wrap\"&gt;\r\n        &lt;button tabindex=\"1\"   type=\"button\" class=\"toggle-tada\"&gt;\r\n          &lt;div class=\"caret-wrap\"&gt;\r\n            &lt;span class=\"caret\"&gt;\r\n            &amp;gt;\r\n            &lt;\/span&gt;\r\n          &lt;\/div&gt;\r\n        &lt;\/button&gt;\r\n      &lt;\/div&gt;\r\n      &lt;div class=\"secondary\"&gt;\r\n      &lt;p&gt;\r\n      By clicking the colourful button, You agree the terms and conditions and Your Present will appear and make you happy!\r\n      &lt;\/p&gt;\r\n    &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n    \r\n&lt;\/div&gt;<\/pre>\n<p>3. Style the map card using the following CSS styles. The following CSS code styles various components like buttons, headers, and transitions, maintaining a Material Design aesthetic. Modify the CSS properties within the provided code to match your project&#8217;s color scheme or specific design requirements.<\/p>\n<pre class=\"prettyprint linenums lang-css\">@import url(https:\/\/fonts.googleapis.com\/css?family=Roboto:400,100);\r\nhtml * {\r\n  font-family: Roboto !important;\r\n  font-weight: 100;\r\n  box-sizing: border-box;\r\n}\r\n\r\n.circle-wrap {\r\n  width: 50px;\r\n  height: 50px;\r\n  position: absolute;\r\n  pointer: cursor;\r\n  top: -19px;\r\n  right: 20px;\r\n  transition: all 0.6s ease;\r\n  transform: scale(1, 1);\r\n}\r\n\r\n.circle-wrap &gt; * {\r\n  outline: 0;\r\n  border: none;\r\n  cursor: pointer;\r\n  width: 100%;\r\n  border-radius: 50%;\r\n  text-align: center;\r\n  padding: 50% 0;\r\n  line-height: 0;\r\n  margin: 0;\r\n  background-color: #e95de3;\r\n  color: white;\r\n  font-size: 20px;\r\n  box-shadow: 2px 2px 10px -2px #4d4d4d;\r\n}\r\n\r\n.tada2 .circle-wrap {\r\n  transition: all 0.6s ease;\r\n  transform: scale(0.8, 0.8);\r\n}\r\n\r\n.header {\r\n  height: 60px;\r\n  width: 100%;\r\n  background-color: #17a5a5;\r\n  color: white;\r\n  box-shadow: 2px 2px 5px 2px #ddd;\r\n}\r\n.header h1 {\r\n  text-align: center;\r\n  position: relative;\r\n  top: 50%;\r\n  transform: translateY(-50%);\r\n  margin: 0 auto;\r\n  font-size: 30px;\r\n}\r\n\r\nul {\r\n  width: 100%;\r\n}\r\n\r\n.item {\r\n  overflow: hidden;\r\n  margin: 80px auto;\r\n  max-width: 600px;\r\n  width: 100%;\r\n}\r\n\r\n.primary {\r\n  height: 300px;\r\n  background-color: #eee;\r\n  color: darkgray;\r\n  font-size: 50px;\r\n  position: relative;\r\n  text-align: right;\r\n}\r\n.primary .spoiler {\r\n  margin: 0 10px;\r\n  position: absolute;\r\n  bottom: 40px;\r\n  right: 0;\r\n}\r\n\r\n.present {\r\n  position: absolute;\r\n  top: 0px;\r\n  left: 0px;\r\n  width: 100%;\r\n  height: calc(100% + 77px);\r\n  background-color: red;\r\n  transform: translateY(100%);\r\n  transition: all 0.8s 0.05s ease;\r\n}\r\n\r\n.present.tada {\r\n  transition: all 0.5s ease;\r\n  transform: translateY(0%);\r\n}\r\n\r\n.title, .secondary {\r\n  padding: 0 10px;\r\n  z-index: 2;\r\n  background-color: #fafafa;\r\n}\r\n\r\n.title {\r\n  border-top: 1px solid #dadada;\r\n  position: relative;\r\n  width: 100%;\r\n  color: #868686;\r\n  font-size: 30px;\r\n  padding: 10px 10px;\r\n  transition: all 0.6s ease;\r\n}\r\n\r\n.secondary {\r\n  color: #acacac;\r\n  line-height: 20px;\r\n  font-size: 14px;\r\n  padding: 20px 0;\r\n}\r\n\r\n.title.tada2 {\r\n  transform: translateY(77px);\r\n  transition: all 0.6s ease;\r\n}\r\n\r\n.caret-wrap {\r\n  transform: rotate(90deg);\r\n  transition: all 0.6s ease;\r\n}\r\n\r\n.caret {\r\n  display: block;\r\n  transform: scaleY(2);\r\n}\r\n\r\n.tada2 .caret-wrap {\r\n  transform: rotate(270deg);\r\n}<\/pre>\n<p>4. Load the <a href=\"https:\/\/jquery.com\" target=\"_blank\" rel=\"noopener\">jQuery JavaScript library<\/a> by adding the following CDN link just before closing the body tag:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;script src='\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery\/2.1.3\/jquery.min.js'&gt;&lt;\/script&gt;\r\n<\/pre>\n<p>5. Finally, add the following JavaScript function to your project to toggle the map view.<\/p>\n<pre class=\"prettyprint linenums lang-js\">setTimeout(function() {\r\n  $('.present').toggleClass('tada');\r\n  $('.title').toggleClass('tada2');\r\n},2000);\r\n\r\n$('.toggle-tada').click(function() {\r\n  $('.present').toggleClass('tada');\r\n  $('.title').toggleClass('tada2');\r\n});<\/pre>\n<p>Adjust and integrate it into your project to enhance the visual appeal and user experience of your map interface.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully integrated this Material Design Google Map card on your website. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code styles elements for a Google Map integration using Material Design. It customizes various components&#8217; appearance and animations, like&#8230;<\/p>\n","protected":false},"author":1,"featured_media":10137,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[242],"tags":[],"class_list":["post-10126","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-material-design"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Google Map Integration Using Material Design &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Google Map Integration Using Material Design. 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\/material-design\/google-map-integration-using-material-design\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Google Map Integration Using Material Design &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Google Map Integration Using Material Design. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/\" \/>\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-19T18:14:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T11:16:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Google-Map-Integration-Using-Material-Design.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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Google Map Integration Using Material Design\",\"datePublished\":\"2024-01-19T18:14:00+00:00\",\"dateModified\":\"2024-01-22T11:16:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/\"},\"wordCount\":221,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Google-Map-Integration-Using-Material-Design.png\",\"articleSection\":[\"Material Design\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/\",\"url\":\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/\",\"name\":\"Google Map Integration Using Material Design &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Google-Map-Integration-Using-Material-Design.png\",\"datePublished\":\"2024-01-19T18:14:00+00:00\",\"dateModified\":\"2024-01-22T11:16:45+00:00\",\"description\":\"Here is a free code snippet to create a Google Map Integration Using Material Design. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Google-Map-Integration-Using-Material-Design.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Google-Map-Integration-Using-Material-Design.png\",\"width\":1280,\"height\":960,\"caption\":\"Google Map Integration Using Material Design\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Material Design\",\"item\":\"https:\/\/codehim.com\/category\/material-design\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Google Map Integration Using Material Design\"}]},{\"@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":"Google Map Integration Using Material Design &#8212; CodeHim","description":"Here is a free code snippet to create a Google Map Integration Using Material Design. 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\/material-design\/google-map-integration-using-material-design\/","og_locale":"en_US","og_type":"article","og_title":"Google Map Integration Using Material Design &#8212; CodeHim","og_description":"Here is a free code snippet to create a Google Map Integration Using Material Design. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-19T18:14:00+00:00","article_modified_time":"2024-01-22T11:16:45+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Google-Map-Integration-Using-Material-Design.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":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Google Map Integration Using Material Design","datePublished":"2024-01-19T18:14:00+00:00","dateModified":"2024-01-22T11:16:45+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/"},"wordCount":221,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Google-Map-Integration-Using-Material-Design.png","articleSection":["Material Design"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/","url":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/","name":"Google Map Integration Using Material Design &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Google-Map-Integration-Using-Material-Design.png","datePublished":"2024-01-19T18:14:00+00:00","dateModified":"2024-01-22T11:16:45+00:00","description":"Here is a free code snippet to create a Google Map Integration Using Material Design. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Google-Map-Integration-Using-Material-Design.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Google-Map-Integration-Using-Material-Design.png","width":1280,"height":960,"caption":"Google Map Integration Using Material Design"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/material-design\/google-map-integration-using-material-design\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Material Design","item":"https:\/\/codehim.com\/category\/material-design\/"},{"@type":"ListItem","position":3,"name":"Google Map Integration Using Material Design"}]},{"@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":611,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10126","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=10126"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10126\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/10137"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=10126"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=10126"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=10126"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}