{"id":9725,"date":"2024-01-10T18:07:00","date_gmt":"2024-01-10T18:07:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9725"},"modified":"2024-01-22T16:09:28","modified_gmt":"2024-01-22T11:09:28","slug":"css-text-overflow-scroll-animation","status":"publish","type":"post","link":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/","title":{"rendered":"CSS Text Overflow Scroll Animation"},"content":{"rendered":"<p>This code creates a CSS text overflow scroll animation. The animation is applied to text that is too long to fit within its container. The <a href=\"https:\/\/codehim.com\/html5-css3\/moving-text-animation-css\/\" target=\"_blank\" rel=\"noopener\">text scrolls from left to right<\/a> and then back again, repeating infinitely.<\/p>\n<p>The animation is created using the <a href=\"https:\/\/www.w3schools.com\/cssref\/css3_pr_animation-keyframes.php\" target=\"_blank\" rel=\"noopener\">CSS @keyframes rule<\/a>. The <code class=\"\">@keyframes<\/code> rule defines the animation steps. In this case, the animation steps are to move the text to the left edge of the container, then to the right edge of the container, and then back to the left edge of the container.<\/p>\n<h2>How to Create Text Overflow Scroll Animation Using CSS<\/h2>\n<p>1. First, create the HTML structure for scrolling text on the desired section of your website. Customize the content within the <code>&lt;span&gt;<\/code> tags to suit your needs.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"center\"&gt;\r\n  &lt;div id=\"one\" class=\"text-container\"&gt;\r\n    &lt;span&gt;Really long long long text&lt;\/span&gt;\r\n  &lt;\/div&gt;\r\n\r\n  &lt;div id=\"two\" class=\"text-container\"&gt;\r\n    &lt;span&gt;I have very little space&lt;\/span&gt;\r\n    &lt;div class=\"fader fader-left\"&gt;&lt;\/div&gt;\r\n    &lt;div class=\"fader fader-right\"&gt;&lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n\r\n  &lt;div id=\"three\" class=\"text-container\"&gt;\r\n    &lt;span&gt;I have enough space&lt;\/span&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;<\/pre>\n<p>2. Copy the CSS code and link it to your HTML file. Include it in the head section between <code>&lt;style&gt;<\/code> tags or link an external CSS file.<\/p>\n<pre class=\"prettyprint linenums lang-css\">* {\r\n  box-sizing: border-box;\r\n}\r\n\r\n#one {\r\n  width: 70%;\r\n}\r\n\r\n#two {\r\n  width: 40%;\r\n  padding-left: 20px;\r\n  padding-right: 15px;\r\n  overflow: hidden;\r\n}\r\n\r\n#three {\r\n  width: 100%;\r\n}\r\n\r\n.center {\r\n  display: grid;\r\n  gap: 20px;\r\n  position: absolute;\r\n  top: 50%;\r\n  left: 50%;\r\n  -webkit-transform: translate(-50%, -50%);\r\n  transform: translate(-50%, -50%);\r\n}\r\n\r\n.text-container {\r\n  padding: 5px 10px;\r\n  min-width: 0;\r\n  font-size: 2rem;\r\n  color: #fff;\r\n  white-space: nowrap;\r\n  overflow: visible;\r\n  position: relative;\r\n  border: 1px solid #fff;\r\n  border-radius: 5px;\r\n}\r\n.text-container span {\r\n  display: inline-block;\r\n}\r\n.text-container .animate {\r\n  position: relative;\r\n  animation: leftright 3s infinite alternate ease-in-out;\r\n}\r\n\r\n@keyframes leftright {\r\n  0%, 20% {\r\n    transform: translateX(0%);\r\n    left: 0%;\r\n  }\r\n  80%, 100% {\r\n    transform: translateX(-100%);\r\n    left: 100%;\r\n  }\r\n}\r\n.fader {\r\n  position: absolute;\r\n  top: 0;\r\n  height: 100%;\r\n  width: 25px;\r\n}\r\n.fader.fader-left {\r\n  left: 0;\r\n  background: linear-gradient(to left, transparent, #56ab2f);\r\n}\r\n.fader.fader-right {\r\n  right: 0;\r\n  background: linear-gradient(to right, transparent, #56ab2f);\r\n}\r\n\r\n@media (max-width: 450px) {\r\n  .center {\r\n    width: 100%;\r\n    padding: 20px;\r\n  }\r\n}<\/pre>\n<p>If you want to change the animation duration, modify the <code>@keyframes leftright<\/code> section in the CSS code. Adjust the <code>3s<\/code> duration to your preferred timing.<\/p>\n<p>3. Finally, place the JavaScript code at the end of your HTML file, just before the closing <code>&lt;\/body&gt;<\/code> tag. This ensures that the script runs after the HTML and CSS have loaded.<\/p>\n<pre class=\"prettyprint linenums lang-js\">\/\/ 1\r\nlet container1 = document.querySelector(\"#one\");\r\nlet text1 = document.querySelector(\"#one span\");\r\n\r\nif (container1.clientWidth &lt; text1.clientWidth) {\r\n  text1.classList.add(\"animate\");\r\n}\r\n\r\n\/\/ 2\r\nlet container2 = document.querySelector(\"#two\");\r\nlet text2 = document.querySelector(\"#two span\");\r\n\r\nif (container2.clientWidth &lt; text2.clientWidth) {\r\n  text2.classList.add(\"animate\");\r\n}\r\n\r\n\/\/ 3\r\nlet container3 = document.querySelector(\"#two\");\r\nlet text3 = document.querySelector(\"#two span\");\r\n\r\nif (container3.clientWidth &lt; text3.clientWidth) {\r\n  text3.classList.add(\"animate\");\r\n}<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully created a Text Overflow Scroll animation on your website. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code creates a CSS text overflow scroll animation. The animation is applied to text that is too long to&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9733,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[209],"tags":[78],"class_list":["post-9725","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-animation-effects","tag-scrolling"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CSS Text Overflow Scroll Animation &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a CSS Text Overflow Scroll Animation. 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\/animation-effects\/css-text-overflow-scroll-animation\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CSS Text Overflow Scroll Animation &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a CSS Text Overflow Scroll Animation. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/\" \/>\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-10T18:07:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T11:09:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/CSS-Text-Overflow-Scroll-Animation.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\/animation-effects\/css-text-overflow-scroll-animation\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"CSS Text Overflow Scroll Animation\",\"datePublished\":\"2024-01-10T18:07:00+00:00\",\"dateModified\":\"2024-01-22T11:09:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/\"},\"wordCount\":232,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/CSS-Text-Overflow-Scroll-Animation.png\",\"keywords\":[\"Scrolling Effects\"],\"articleSection\":[\"Animation &amp; Effects\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/\",\"url\":\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/\",\"name\":\"CSS Text Overflow Scroll Animation &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/CSS-Text-Overflow-Scroll-Animation.png\",\"datePublished\":\"2024-01-10T18:07:00+00:00\",\"dateModified\":\"2024-01-22T11:09:28+00:00\",\"description\":\"Here is a free code snippet to create a CSS Text Overflow Scroll Animation. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/CSS-Text-Overflow-Scroll-Animation.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/CSS-Text-Overflow-Scroll-Animation.png\",\"width\":1280,\"height\":960,\"caption\":\"CSS Text Overflow Scroll Animation\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Animation &amp; Effects\",\"item\":\"https:\/\/codehim.com\/category\/animation-effects\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"CSS Text Overflow Scroll Animation\"}]},{\"@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":"CSS Text Overflow Scroll Animation &#8212; CodeHim","description":"Here is a free code snippet to create a CSS Text Overflow Scroll Animation. 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\/animation-effects\/css-text-overflow-scroll-animation\/","og_locale":"en_US","og_type":"article","og_title":"CSS Text Overflow Scroll Animation &#8212; CodeHim","og_description":"Here is a free code snippet to create a CSS Text Overflow Scroll Animation. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-10T18:07:00+00:00","article_modified_time":"2024-01-22T11:09:28+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/CSS-Text-Overflow-Scroll-Animation.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\/animation-effects\/css-text-overflow-scroll-animation\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"CSS Text Overflow Scroll Animation","datePublished":"2024-01-10T18:07:00+00:00","dateModified":"2024-01-22T11:09:28+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/"},"wordCount":232,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/CSS-Text-Overflow-Scroll-Animation.png","keywords":["Scrolling Effects"],"articleSection":["Animation &amp; Effects"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/","url":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/","name":"CSS Text Overflow Scroll Animation &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/CSS-Text-Overflow-Scroll-Animation.png","datePublished":"2024-01-10T18:07:00+00:00","dateModified":"2024-01-22T11:09:28+00:00","description":"Here is a free code snippet to create a CSS Text Overflow Scroll Animation. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/CSS-Text-Overflow-Scroll-Animation.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/CSS-Text-Overflow-Scroll-Animation.png","width":1280,"height":960,"caption":"CSS Text Overflow Scroll Animation"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/animation-effects\/css-text-overflow-scroll-animation\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Animation &amp; Effects","item":"https:\/\/codehim.com\/category\/animation-effects\/"},{"@type":"ListItem","position":3,"name":"CSS Text Overflow Scroll Animation"}]},{"@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":2139,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9725","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=9725"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9725\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9733"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9725"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9725"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9725"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}