{"id":8801,"date":"2024-01-21T17:55:00","date_gmt":"2024-01-21T17:55:00","guid":{"rendered":"https:\/\/codehim.com\/?p=8801"},"modified":"2024-01-22T15:56:09","modified_gmt":"2024-01-22T10:56:09","slug":"css-text-shadow-neon-effect","status":"publish","type":"post","link":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/","title":{"rendered":"10+ CSS Text Shadow Neon Effect"},"content":{"rendered":"<p>This code creates a stylish neon text shadow effect using CSS. It applies colorful, glowing text shadows to a set of text elements, giving them a dynamic flickering appearance. This code works by defining CSS styles for different text elements and using JavaScript to randomize the animation intervals, creating an eye-catching neon effect. It&#8217;s helpful for adding attention-grabbing typography to web pages.<\/p>\n<p>You can use this code in your website&#8217;s headings, banners, or promotional messages to add a vibrant neon text effect. It instantly captures visitors&#8217; attention.<\/p>\n<h2>How to Create CSS Text Shadow Neon Effect<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/fonts.google.com\/\" target=\"_blank\" rel=\"noopener\">Google Fonts<\/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 href='https:\/\/fonts.googleapis.com\/css?family=League+Script' rel='stylesheet' type='text\/css'&gt;\r\n&lt;link rel='stylesheet' href='https:\/\/fonts.googleapis.com\/css?family=Bad+Script|Gruppo|Kumar+One+Outline|League+Script|Londrina+Outline|Monoton|Sriracha|Yellowtail&amp;text=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789?+'&gt;\r\n<\/pre>\n<p>2. After that, create the HTML structure for the text elements you want to apply the neon effect to. Wrap each text element in a <code>&lt;x-sign&gt;<\/code> tag like this:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;x-sign&gt;\r\n  OPEN\r\n&lt;\/x-sign&gt;\r\n&lt;x-sign&gt;\r\n  Come back soon\r\n&lt;\/x-sign&gt;\r\n&lt;x-sign&gt;\r\n  PBR&lt;br&gt;in cans\r\n&lt;\/x-sign&gt;\r\n&lt;x-sign&gt;\r\n  REAL LIVE&lt;br&gt;Hot wings\r\n&lt;\/x-sign&gt;\r\n&lt;x-sign&gt;\r\n  &lt;small&gt;GARDEN PARK&lt;\/small&gt;&lt;br&gt;MOTEL\r\n&lt;\/x-sign&gt;\r\n&lt;x-sign&gt;\r\n   Restrooms\r\n  &lt;br&gt;&lt;small&gt;Yes&amp;mdash;they are bad&lt;\/small&gt;\r\n&lt;\/x-sign&gt;\r\n&lt;x-sign&gt;\r\n  FREE RADIOS\r\n&lt;\/x-sign&gt;\r\n&lt;x-sign&gt;\r\n   WHO YOU GONNA CALL?\r\n&lt;\/x-sign&gt;\r\n&lt;x-sign&gt;\r\n  Karaoke Inside\r\n&lt;\/x-sign&gt;\r\n<\/pre>\n<p>3. In your CSS file, define the styles for the neon effect by targeting the <code>&lt;x-sign&gt;<\/code> elements. Customize the colors and fonts according to your preference. Ensure you include the animation and text-shadow properties:<\/p>\n<pre class=\"prettyprint linenums lang-css\">html {\r\n  background: #090000;\r\n  line-height: 1.1;\r\n  text-align: center;\r\n}\r\n\r\nbody {\r\n  display: grid;\r\n  grid-gap: 1em;\r\n  grid-template-columns: repeat(auto-fit, minmax(0, 12ch));\r\n  align-items: center;\r\n  align-content: center;\r\n  justify-content: center;\r\n}\r\n\r\nx-sign {\r\n  --interval: 1s;\r\n  display: block;\r\n  text-shadow: \r\n    0 0 10px var(--color1),\r\n    0 0 20px var(--color2),\r\n    0 0 40px var(--color3),\r\n    0 0 80px var(--color4);\r\n  will-change: filter, color;\r\n  filter: saturate(60%);\r\n  animation: flicker steps(100) var(--interval) 1s infinite;\r\n  line-height: 1.6;\r\n}\r\n\r\nx-sign:nth-of-type(1) {\r\n  color: yellow;\r\n  --color1: goldenrod;\r\n  --color2: orangered;\r\n  --color3: mediumblue;\r\n  --color4: purple;\r\n  font-family: Gruppo;\r\n}\r\n\r\nx-sign:nth-of-type(2) {\r\n  color: lightpink;\r\n  --color1: pink;\r\n  --color2: orangered;\r\n  --color3: red;\r\n  --color4: magenta;\r\n  font-family: Bad Script;\r\n}\r\n\r\nx-sign:nth-of-type(3) {\r\n  color: lightyellow;\r\n  --color1: yellow;\r\n  --color2: lime;\r\n  --color3: green;\r\n  --color4: mediumblue;\r\n  font-family: Kumar One Outline;\r\n}\r\n\r\nx-sign:nth-of-type(4) {\r\n  color: lightyellow;\r\n  --color1: gold;\r\n  --color2: firebrick;\r\n  --color3: pink;\r\n  --color4: red;\r\n  font-family: Londrina Outline;\r\n}\r\n\r\n\r\nx-sign:nth-of-type(5) {\r\n  color: azure;\r\n  --color1: azure;\r\n  --color2: aqua;\r\n  --color3: dodgerblue;\r\n  --color4: blue;\r\n  font-family: Sriracha;\r\n}\r\n\r\nx-sign:nth-of-type(6) {\r\n  color: tomato;\r\n  --color1: orangered;\r\n  --color2: firebrick;\r\n  --color3: maroon;\r\n  --color4: darkred;\r\n  font-family: Yellowtail;\r\n}\r\n\r\nx-sign:nth-of-type(7) {\r\n  color: lightyellow;\r\n  --color1: yellow;\r\n  --color2: orange;\r\n  --color3: brown;\r\n  --color4: purple;\r\n  font-family: Bad Script;\r\n}\r\n\r\nx-sign:nth-of-type(8) {\r\n  color: yellow;\r\n  --color1: yellow;\r\n  --color2: lime;\r\n  --color3: green;\r\n  --color4: darkgreen;\r\n  font-family: Monoton;\r\n}\r\n\r\nx-sign:nth-of-type(9) {\r\n  color: lightyellow;\r\n  --color1: yellow;\r\n  --color2: gold;\r\n  --color3: orange;\r\n  --color4: darkred;\r\n  font-family: Sriracha;\r\n}\r\n\r\n@keyframes flicker {\r\n  50% {\r\n    color: white;\r\n    filter: saturate(200%) hue-rotate(20deg);\r\n  }\r\n}<\/pre>\n<p>4. In your JavaScript file, add the following code to randomize the animation intervals:<\/p>\n<pre class=\"prettyprint linenums lang-js\">const signs = document.querySelectorAll('x-sign')\r\nconst randomIn = (min, max) =&gt; (\r\n  Math.floor(Math.random() * (max - min + 1) + min)\r\n)\r\n\r\nconst mixupInterval = el =&gt; {\r\n  const ms = randomIn(2000, 4000)\r\n  el.style.setProperty('--interval', `${ms}ms`)\r\n}\r\n\r\nsigns.forEach(el =&gt; {\r\n  mixupInterval(el)\r\n  el.addEventListener('webkitAnimationIteration', () =&gt; {\r\n    mixupInterval(el)\r\n  })\r\n})<\/pre>\n<p>That&#8217;s all! hopefully, you&#8217;ve successfully created a neon text-shadow effect. This dynamic effect adds a visually appealing element to your web design. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code creates a stylish neon text shadow effect using CSS. It applies colorful, glowing text shadows to a set&#8230;<\/p>\n","protected":false},"author":1,"featured_media":8803,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[97],"tags":[],"class_list":["post-8801","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>10+ CSS Text Shadow Neon Effect &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a 10+ CSS Text Shadow Neon Effect. 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\/css-text-shadow-neon-effect\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"10+ CSS Text Shadow Neon Effect &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a 10+ CSS Text Shadow Neon Effect. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/\" \/>\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-21T17:55:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:56:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Text-Shadow-Neon-Effect.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\/text-input\/css-text-shadow-neon-effect\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"10+ CSS Text Shadow Neon Effect\",\"datePublished\":\"2024-01-21T17:55:00+00:00\",\"dateModified\":\"2024-01-22T10:56:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/\"},\"wordCount\":231,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Text-Shadow-Neon-Effect.png\",\"articleSection\":[\"Text &amp; Input\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/\",\"url\":\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/\",\"name\":\"10+ CSS Text Shadow Neon Effect &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Text-Shadow-Neon-Effect.png\",\"datePublished\":\"2024-01-21T17:55:00+00:00\",\"dateModified\":\"2024-01-22T10:56:09+00:00\",\"description\":\"Here is a free code snippet to create a 10+ CSS Text Shadow Neon Effect. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Text-Shadow-Neon-Effect.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Text-Shadow-Neon-Effect.png\",\"width\":1280,\"height\":960,\"caption\":\"CSS Text Shadow Neon Effect\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#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\":\"10+ CSS Text Shadow Neon Effect\"}]},{\"@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":"10+ CSS Text Shadow Neon Effect &#8212; CodeHim","description":"Here is a free code snippet to create a 10+ CSS Text Shadow Neon Effect. 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\/css-text-shadow-neon-effect\/","og_locale":"en_US","og_type":"article","og_title":"10+ CSS Text Shadow Neon Effect &#8212; CodeHim","og_description":"Here is a free code snippet to create a 10+ CSS Text Shadow Neon Effect. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-21T17:55:00+00:00","article_modified_time":"2024-01-22T10:56:09+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Text-Shadow-Neon-Effect.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\/text-input\/css-text-shadow-neon-effect\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"10+ CSS Text Shadow Neon Effect","datePublished":"2024-01-21T17:55:00+00:00","dateModified":"2024-01-22T10:56:09+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/"},"wordCount":231,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Text-Shadow-Neon-Effect.png","articleSection":["Text &amp; Input"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/","url":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/","name":"10+ CSS Text Shadow Neon Effect &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Text-Shadow-Neon-Effect.png","datePublished":"2024-01-21T17:55:00+00:00","dateModified":"2024-01-22T10:56:09+00:00","description":"Here is a free code snippet to create a 10+ CSS Text Shadow Neon Effect. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Text-Shadow-Neon-Effect.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/CSS-Text-Shadow-Neon-Effect.png","width":1280,"height":960,"caption":"CSS Text Shadow Neon Effect"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/text-input\/css-text-shadow-neon-effect\/#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":"10+ CSS Text Shadow Neon Effect"}]},{"@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":1415,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8801","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=8801"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8801\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/8803"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=8801"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=8801"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=8801"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}