{"id":6465,"date":"2024-01-11T16:46:00","date_gmt":"2024-01-11T16:46:00","guid":{"rendered":"https:\/\/codehim.com\/?p=6465"},"modified":"2024-01-22T14:47:32","modified_gmt":"2024-01-22T09:47:32","slug":"typing-and-erasing-animation-css-and-javascript","status":"publish","type":"post","link":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/","title":{"rendered":"Typing and Erasing Animation CSS and JavaScript"},"content":{"rendered":"<p>Yet another text typing and erasing animation created in CSS and JavaScript. It gets text strings stored in an array and animates with a specific time period with typing effect. You can easily integrate this code snippet to create typing effect with a custom interval.<\/p>\n<h2>How to Create Typing and Erasing Animation in CSS and JavaScript<\/h2>\n<p>1. First of all, create the HTML structure as follows:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;h1&gt;Our recipes are\r\n  &lt;span\r\n     class=\"txt-rotate\"\r\n     data-period=\"2000\"\r\n     data-rotate='[ \"Healthy.\", \"Nutritious.\", \"Delicious.\", \"fun!\" ]'&gt;&lt;\/span&gt;\r\n&lt;\/h1&gt;\r\n&lt;h2&gt;A single recipe is all you need.&lt;\/h2&gt;\r\n&lt;!-- partial --&gt;\r\n  &lt;script  src=\".\/js\/script.js\"&gt;&lt;\/script&gt;<\/pre>\n<p>2. After that, add the following CSS styles to your project:<\/p>\n<pre class=\"prettyprint linenums lang-css\">html,body {\r\n  font-family: 'Raleway', sans-serif;\r\n  font-size: 18px;\r\n  color: #aaa\r\n}\r\n\r\nh1,h2 {\r\n  font-weight: 200;\r\n  margin: 0.4em 0;\r\n}\r\nh1 { font-size: 3.5em; }\r\nh2 {\r\n  color: #888;\r\n  font-size: 2em;\r\n}<\/pre>\n<p>3. Finally, add the following JavaScript code and done.<\/p>\n<pre class=\"prettyprint linenums lang-js\">var TxtRotate = function(el, toRotate, period) {\r\n  this.toRotate = toRotate;\r\n  this.el = el;\r\n  this.loopNum = 0;\r\n  this.period = parseInt(period, 10) || 2000;\r\n  this.txt = '';\r\n  this.tick();\r\n  this.isDeleting = false;\r\n};\r\n\r\nTxtRotate.prototype.tick = function() {\r\n  var i = this.loopNum % this.toRotate.length;\r\n  var fullTxt = this.toRotate[i];\r\n\r\n  if (this.isDeleting) {\r\n    this.txt = fullTxt.substring(0, this.txt.length - 1);\r\n  } else {\r\n    this.txt = fullTxt.substring(0, this.txt.length + 1);\r\n  }\r\n\r\n  this.el.innerHTML = '&lt;span class=\"wrap\"&gt;'+this.txt+'&lt;\/span&gt;';\r\n\r\n  var that = this;\r\n  var delta = 300 - Math.random() * 100;\r\n\r\n  if (this.isDeleting) { delta \/= 2; }\r\n\r\n  if (!this.isDeleting &amp;&amp; this.txt === fullTxt) {\r\n    delta = this.period;\r\n    this.isDeleting = true;\r\n  } else if (this.isDeleting &amp;&amp; this.txt === '') {\r\n    this.isDeleting = false;\r\n    this.loopNum++;\r\n    delta = 500;\r\n  }\r\n\r\n  setTimeout(function() {\r\n    that.tick();\r\n  }, delta);\r\n};\r\n\r\nwindow.onload = function() {\r\n  var elements = document.getElementsByClassName('txt-rotate');\r\n  for (var i=0; i&lt;elements.length; i++) {\r\n    var toRotate = elements[i].getAttribute('data-rotate');\r\n    var period = elements[i].getAttribute('data-period');\r\n    if (toRotate) {\r\n      new TxtRotate(elements[i], JSON.parse(toRotate), period);\r\n    }\r\n  }\r\n  \/\/ INJECT CSS\r\n  var css = document.createElement(\"style\");\r\n  css.type = \"text\/css\";\r\n  css.innerHTML = \".txt-rotate &gt; .wrap { border-right: 0.08em solid #666 }\";\r\n  document.body.appendChild(css);\r\n};<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully integrated this typing and erasing animation code snippet into your project. If you have any questions or facing any issues, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Yet another text typing and erasing animation created in CSS and JavaScript. It gets text strings stored in an array&#8230;<\/p>\n","protected":false},"author":1,"featured_media":6479,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[97],"tags":[227],"class_list":["post-6465","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-text-input","tag-typing-effect"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Typing and Erasing Animation CSS and JavaScript &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a lightweight typing and erasing animation created in HTML CSS and JavaScript. You can view demo and download code snippet.\" \/>\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\/typing-and-erasing-animation-css-and-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Typing and Erasing Animation CSS and JavaScript &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a lightweight typing and erasing animation created in HTML CSS and JavaScript. You can view demo and download code snippet.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-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-11T16:46:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T09:47:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Typing-and-Erasing-Animatio.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\/typing-and-erasing-animation-css-and-javascript\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Typing and Erasing Animation CSS and JavaScript\",\"datePublished\":\"2024-01-11T16:46:00+00:00\",\"dateModified\":\"2024-01-22T09:47:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/\"},\"wordCount\":122,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Typing-and-Erasing-Animatio.png\",\"keywords\":[\"Typing Effect\"],\"articleSection\":[\"Text &amp; Input\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/\",\"url\":\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/\",\"name\":\"Typing and Erasing Animation CSS and JavaScript &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Typing-and-Erasing-Animatio.png\",\"datePublished\":\"2024-01-11T16:46:00+00:00\",\"dateModified\":\"2024-01-22T09:47:32+00:00\",\"description\":\"Here is a lightweight typing and erasing animation created in HTML CSS and JavaScript. You can view demo and download code snippet.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Typing-and-Erasing-Animatio.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Typing-and-Erasing-Animatio.png\",\"width\":1280,\"height\":960,\"caption\":\"Typing and Erasing Animation CSS and JavaScript\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-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\":\"Typing and Erasing Animation 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":"Typing and Erasing Animation CSS and JavaScript &#8212; CodeHim","description":"Here is a lightweight typing and erasing animation created in HTML CSS and JavaScript. You can view demo and download code snippet.","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\/typing-and-erasing-animation-css-and-javascript\/","og_locale":"en_US","og_type":"article","og_title":"Typing and Erasing Animation CSS and JavaScript &#8212; CodeHim","og_description":"Here is a lightweight typing and erasing animation created in HTML CSS and JavaScript. You can view demo and download code snippet.","og_url":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-11T16:46:00+00:00","article_modified_time":"2024-01-22T09:47:32+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Typing-and-Erasing-Animatio.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\/typing-and-erasing-animation-css-and-javascript\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Typing and Erasing Animation CSS and JavaScript","datePublished":"2024-01-11T16:46:00+00:00","dateModified":"2024-01-22T09:47:32+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/"},"wordCount":122,"commentCount":1,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Typing-and-Erasing-Animatio.png","keywords":["Typing Effect"],"articleSection":["Text &amp; Input"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/","url":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/","name":"Typing and Erasing Animation CSS and JavaScript &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Typing-and-Erasing-Animatio.png","datePublished":"2024-01-11T16:46:00+00:00","dateModified":"2024-01-22T09:47:32+00:00","description":"Here is a lightweight typing and erasing animation created in HTML CSS and JavaScript. You can view demo and download code snippet.","breadcrumb":{"@id":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-css-and-javascript\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Typing-and-Erasing-Animatio.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/Typing-and-Erasing-Animatio.png","width":1280,"height":960,"caption":"Typing and Erasing Animation CSS and JavaScript"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/text-input\/typing-and-erasing-animation-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":"Typing and Erasing Animation 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":4151,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/6465","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=6465"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/6465\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/6479"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=6465"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=6465"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=6465"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}