{"id":11145,"date":"2024-01-28T21:35:29","date_gmt":"2024-01-28T16:35:29","guid":{"rendered":"https:\/\/codehim.com\/?p=11145"},"modified":"2024-02-03T13:18:05","modified_gmt":"2024-02-03T08:18:05","slug":"animated-text-using-css-and-javascript","status":"publish","type":"post","link":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/","title":{"rendered":"Animated Text Using CSS and JavaScript"},"content":{"rendered":"<p>This CSS and JavaScript code snippet helps you to create an animated text. It comes with calculated animations, and letters gracefully dance, forming a spellbinding visual experience. Perfect for injecting life into your web projects, this code seamlessly blends the artistry of design with the precision of code, creating an engaging display that is both eye-catching and innovative.<\/p>\n<h2>How to Create Animated Text Using CSS and JavaScript<\/h2>\n<p>1. Begin by creating a container <code>&lt;div&gt;<\/code> with an id of &#8220;c1.&#8221; Inside this container, nest another <code>&lt;div&gt;<\/code> with an id of &#8220;c2.&#8221; Finally, add a <code>&lt;p&gt;<\/code> element within &#8220;c2&#8221; to hold the animated text. Each letter of the text is enclosed in a <code>&lt;span&gt;<\/code> element with a custom style property &#8220;&#8211;t&#8221; to control the animation timing.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div id=\"c1\"&gt;\r\n  &lt;div id=\"c2\"&gt;\r\n    &lt;p&gt;\r\n      &lt;span style=\"--t: 0.05\"&gt;M&lt;\/span&gt;\r\n      &lt;span style=\"--t: 0.15\"&gt;O&lt;\/span&gt;\r\n      &lt;span style=\"--t: 0.25\"&gt;V&lt;\/span&gt;\r\n      &lt;span style=\"--t: 0.35\"&gt;E&lt;\/span&gt;\r\n      &lt;span style=\"--t: 0.45\"&gt;A&lt;\/span&gt;\r\n      &lt;span style=\"--t: 0.55\"&gt;R&lt;\/span&gt;\r\n      &lt;span style=\"--t: 0.65\"&gt;O&lt;\/span&gt;\r\n      &lt;span style=\"--t: 0.75\"&gt;U&lt;\/span&gt;\r\n      &lt;span style=\"--t: 0.85\"&gt;N&lt;\/span&gt;\r\n      &lt;span style=\"--t: 0.95\"&gt;D&lt;\/span&gt;\r\n    &lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n<\/pre>\n<p>2. In CSS, import the necessary font and define the keyframe animation. The root styles set up the main animation, while individual styles for &#8220;c1&#8221; and &#8220;c2&#8221; control their specific animations. The &#8220;p&#8221; and &#8220;span&#8221; styles handle the positioning, size, and color of the animated text.<\/p>\n<pre class=\"prettyprint linenums lang-css\">@import url('https:\/\/fonts.googleapis.com\/css2?family=Palanquin+Dark:wght@700&amp;display=swap');\r\n@property --a {\r\n  syntax: \"&lt;angle&gt;\";\r\n  inherits: true;\r\n  initial-value: 0deg;\r\n}\r\n@keyframes round {\r\n  from {--a: 0deg}\r\n  to {--a: 360deg}\r\n}\r\n:root {\r\n  animation: round 10s linear infinite;\r\n  --x0: 0;\r\n  --y0: calc(cos(var(--a)) * 50 + 50);\r\n  --x3: 100;\r\n  --y3: calc(cos(var(--a) + 100deg) * 50 + 50);\r\n}\r\n#c1 {\r\n  animation: round 8s linear infinite;\r\n  --x1: calc(50 + sin(var(--a)) * 40);\r\n  --y1: calc(50 + cos(var(--a)) * 50);  \r\n}\r\n#c2 {\r\n  animation: round 6s linear infinite;\r\n  --x2: calc(50 + sin(var(--a)) * 40);\r\n  --y2: calc(50 + cos(var(--a)) * 50);  \r\n}\r\nbody{\r\n  background: #333 !important;\r\n  margin: 0;\r\n  width: 100vw;\r\n  height: 100vh;\r\n  overflow: hidden;\r\n}\r\np {\r\n  position: relative;\r\n  width: 100%;\r\n  margin: 0;\r\n  height: 100%;\r\n  font-family: 'Palanquin Dark', sans-serif;\r\n  font-size: 6vw;\r\n}\r\n\r\nspan {\r\n  position: absolute;\r\n  --mt: calc(1 - var(--t));\r\n  --x: calc(var(--mt) * var(--mt) * var(--mt) * var(--x0) + 3 * var(--t) * var(--mt) * var(--mt) * var(--x1) + 3 * var(--t) * var(--t) * var(--mt) * var(--x2) + var(--t) * var(--t) * var(--t) * var(--x3));\r\n  --y: calc(var(--mt) * var(--mt) * var(--mt) * var(--y0) + 3 * var(--t) * var(--mt) * var(--mt) * var(--y1) + 3 * var(--t) * var(--t) * var(--mt) * var(--y2) + var(--t) * var(--t) * var(--t) * var(--y3));\r\n  left: calc(1vw * var(--x) - 2vw);\r\n  top: calc(1vh * var(--y) - 4vh);\r\n  color: rgb(calc((var(--y) - var(--x)) * 0.5% + 50%) calc((var(--x) - var(--y)) * 0.5% + 50%) calc(var(--x) * 1%));\r\n  text-shadow: calc(0.2px * var(--x)) calc(0.5px * var(--y)) calc(0.1px * (var(--x) + var(--y))) #aaa;\r\n}<\/pre>\n<p>3. To ensure cross-browser compatibility, a JavaScript fallback is provided for browsers lacking support for the <code>@property<\/code> rule. This script dynamically adjusts the animation based on the current timestamp, creating a smooth and continuous animation effect.<\/p>\n<pre class=\"prettyprint linenums lang-js\">\/* Fallback for missing @property support in Firefox  *\/\r\nif (!CSS.registerProperty) {\r\n  const root = document.querySelector(':root');\r\n  const c1 = root.querySelector('#c1');\r\n  const c2 = root.querySelector('#c1');\r\n  \r\n  const zero = document.timeline.currentTime;\r\n  \r\n  function step (timeStamp) {\r\n    const value = timeStamp - zero;\r\n    \r\n    root.style.setProperty('--a', `${(value \/ 10000 *360) % 360}deg`);\r\n    c1.style.setProperty('--a', `${(value \/ 8000 *360) % 360}deg`);\r\n    c2.style.setProperty('--a', `${(value \/ 6000 *360) % 360}deg`);\r\n    \r\n    requestAnimationFrame(step);\r\n  }\r\n  \r\n  requestAnimationFrame(step);\r\n}<\/pre>\n<p>Feel free to customize the text within the <code>&lt;p&gt;<\/code> element and experiment with the animation duration by adjusting the keyframe durations in the CSS code. You can also modify the font and colors to suit your design preferences.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully created Animated Text Using CSS and Javascript. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This CSS and JavaScript code snippet helps you to create an animated text. It comes with calculated animations, and letters&#8230;<\/p>\n","protected":false},"author":1,"featured_media":11207,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[97],"tags":[],"class_list":["post-11145","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>Animated Text Using CSS and JavaScript &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Animated Text Using CSS and JavaScript. 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\/animated-text-using-css-and-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Animated Text Using CSS and JavaScript &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Animated Text Using CSS and JavaScript. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/\" \/>\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-28T16:35:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-03T08:18:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Animated-Text-Using-Css-And-JavaScript.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\/animated-text-using-css-and-javascript\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Animated Text Using CSS and JavaScript\",\"datePublished\":\"2024-01-28T16:35:29+00:00\",\"dateModified\":\"2024-02-03T08:18:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/\"},\"wordCount\":267,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Animated-Text-Using-Css-And-JavaScript.png\",\"articleSection\":[\"Text &amp; Input\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/\",\"url\":\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/\",\"name\":\"Animated Text Using CSS and JavaScript &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Animated-Text-Using-Css-And-JavaScript.png\",\"datePublished\":\"2024-01-28T16:35:29+00:00\",\"dateModified\":\"2024-02-03T08:18:05+00:00\",\"description\":\"Here is a free code snippet to create a Animated Text Using CSS and JavaScript. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Animated-Text-Using-Css-And-JavaScript.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Animated-Text-Using-Css-And-JavaScript.png\",\"width\":1280,\"height\":960,\"caption\":\"Animated Text Using CSS and JavaScript\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#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\":\"Animated Text Using CSS and JavaScript\"}]},{\"@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":"Animated Text Using CSS and JavaScript &#8212; CodeHim","description":"Here is a free code snippet to create a Animated Text Using CSS and JavaScript. 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\/animated-text-using-css-and-javascript\/","og_locale":"en_US","og_type":"article","og_title":"Animated Text Using CSS and JavaScript &#8212; CodeHim","og_description":"Here is a free code snippet to create a Animated Text Using CSS and JavaScript. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-28T16:35:29+00:00","article_modified_time":"2024-02-03T08:18:05+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Animated-Text-Using-Css-And-JavaScript.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\/animated-text-using-css-and-javascript\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Animated Text Using CSS and JavaScript","datePublished":"2024-01-28T16:35:29+00:00","dateModified":"2024-02-03T08:18:05+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/"},"wordCount":267,"commentCount":1,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Animated-Text-Using-Css-And-JavaScript.png","articleSection":["Text &amp; Input"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/","url":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/","name":"Animated Text Using CSS and JavaScript &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Animated-Text-Using-Css-And-JavaScript.png","datePublished":"2024-01-28T16:35:29+00:00","dateModified":"2024-02-03T08:18:05+00:00","description":"Here is a free code snippet to create a Animated Text Using CSS and JavaScript. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Animated-Text-Using-Css-And-JavaScript.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/02\/Animated-Text-Using-Css-And-JavaScript.png","width":1280,"height":960,"caption":"Animated Text Using CSS and JavaScript"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/text-input\/animated-text-using-css-and-javascript\/#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":"Animated Text Using CSS and JavaScript"}]},{"@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":487,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/11145","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=11145"}],"version-history":[{"count":3,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/11145\/revisions"}],"predecessor-version":[{"id":11242,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/11145\/revisions\/11242"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/11207"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=11145"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=11145"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=11145"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}