{"id":6761,"date":"2024-01-10T17:47:00","date_gmt":"2024-01-10T17:47:00","guid":{"rendered":"https:\/\/codehim.com\/?p=6761"},"modified":"2024-01-22T15:48:27","modified_gmt":"2024-01-22T10:48:27","slug":"javascript-countdown-timer-with-days-and-seconds","status":"publish","type":"post","link":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/","title":{"rendered":"JavaScript Countdown Timer with Days and Seconds"},"content":{"rendered":"<p>This JavaScript code snippet helps you to create countdown timer with days, hours, minutes, and seconds. You just need to define deadline in the timer function call and this code snippet start countdowns from that time.<\/p>\n<p>You can integrate this countdown timer for coming soon events or product\/service. The interface can be customized according to your needs.<\/p>\n<h2>How to Create JavaScript Countdown Timer with Days and Seconds<\/h2>\n<p>1. First of all, create the HTML structure as follows:<\/p>\n<pre class=\"prettyprint linenums lang-html\"> &lt;h3&gt;Countdown By Pure Javascript&lt;\/h3&gt;\r\n    &lt;p id='num'&gt;&lt;\/p&gt;\r\n&lt;div id='countDiv'&gt;\r\n    &lt;div&gt;\r\n        &lt;span class='days'&gt;&lt;\/span&gt;\r\n        &lt;div class='smallText'&gt;Days&lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n    &lt;div&gt;\r\n        &lt;span class='hours'&gt;&lt;\/span&gt;\r\n        &lt;div class='smallText'&gt;Hours&lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n    &lt;div&gt;\r\n        &lt;span class='minutes'&gt;&lt;\/span&gt;\r\n        &lt;div class='smallText'&gt;Minutes&lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n    &lt;div&gt;\r\n        &lt;span class='seconds'&gt;&lt;\/span&gt;\r\n        &lt;div class='smallText'&gt;Seconds&lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n    \r\n    &lt;\/div&gt;<\/pre>\n<p>2. After that, add the following CSS styles to your project:<\/p>\n<pre class=\"prettyprint linenums lang-css\">* {\r\n\r\n    font-family:\"Ruluko\";\r\n\r\n}\r\nmain{\r\n    background: #447878 !important;\r\n    text-align: center;\r\n    padding: 150px 20px !important;\r\n}\r\nh3 {\r\n    margin: 20px;\r\n    color:white;\r\n}\r\n\r\n#countDiv {\r\n    color:white;\r\n    display:inline-block;\r\n    font-size:30px;\r\n}\r\n\r\n#countDiv &gt; div {\r\n    padding:10px;\r\n    background-color:#38556A;\r\n    border-radius: 30% 3%;\r\n    display:inline-block;\r\n}\r\n\r\n#countDiv div &gt; span {\r\n    padding:15px;\r\n    background-color:#4C6983;\r\n    border-radius: 30% 3%;\r\n    display: inline-block;\r\n    transition:all 2s;\r\n}\r\n\r\n#countDiv div &gt; span:hover {\r\n    transform:scale(2)\r\n}\r\n\r\n.smallText{\r\n    font-weight:900;\r\n\tpadding-top: 5px;\r\n\tfont-size: 16px;\r\n}<\/pre>\n<p>3. Finally, add the following JavaScript code and done.<\/p>\n<pre class=\"prettyprint linenums lang-js\">function timingCalc(endtime) {\r\n    'use strict';\r\n    \r\n    var timeTotal = Date.parse(endtime) - Date.parse(new Date()),\r\n        timeSeconds = Math.floor((timeTotal \/ 1000) % 60),\r\n        timeMinutes = Math.floor((timeTotal \/ 1000 \/ 60) % 60),\r\n        timeHours = Math.floor((timeTotal \/ (1000 * 60 * 60)) % 24),\r\n        timeDays = Math.floor(timeTotal \/ (1000 * 60 * 60 * 24));\r\n    \r\n    return {\r\n        'total': timeTotal,\r\n        'seconds': timeSeconds,\r\n        'minutes': timeMinutes,\r\n        'hours': timeHours,\r\n        'days': timeDays\r\n    };\r\n    \r\n}\r\n\r\nvar textTest = String.fromCharCode(65, 108, 97, 97, 65, 104, 109, 101, 100);\r\ndocument.getElementById('num').innerHTML = textTest;\r\n\r\nfunction installCalc(id, endtime) {\r\n    'use strict';\r\n    \r\n    var calc = document.getElementById(id),\r\n        daySpan = calc.querySelector(\".days\"),\r\n        hourSpan = calc.querySelector(\".hours\"),\r\n        minSpan = calc.querySelector(\".minutes\"),\r\n        secSpan = calc.querySelector(\".seconds\");\r\n    \r\n    function startCalc() {\r\n        \r\n        var timeTotal = timingCalc(endtime);\r\n        \r\n        daySpan.innerHTML = timeTotal.days;\r\n        hourSpan.innerHTML = (\"0\" + timeTotal.hours).slice(-2);\r\n        minSpan.innerHTML = (\"0\" + timeTotal.minutes).slice(-2);\r\n        secSpan.innerHTML = (\"0\" + timeTotal.seconds).slice(-2);\r\n        \r\n        if (timeTotal.total &lt;= 0) {\r\n            \r\n            clearInterval(timingNow);\r\n            \r\n        }\r\n        \r\n    }\r\n    startCalc();\r\n    var timingNow = setInterval(startCalc, 1000);\r\n}\r\n\r\nvar DeadLine = new Date(Date.parse(new Date()) + 60 * 24 * 60 * 60 * 1000);\r\ninstallCalc(\"countDiv\", DeadLine);<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully integrated this countdown timer 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>This JavaScript code snippet helps you to create countdown timer with days, hours, minutes, and seconds. You just need to&#8230;<\/p>\n","protected":false},"author":1,"featured_media":6789,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[58],"tags":[],"class_list":["post-6761","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-date-time"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>JavaScript Countdown Timer with Days and Seconds &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a lightweight JavaScript code snippet to create countdown timer with days and seconds. You can view demo and download 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\/date-time\/javascript-countdown-timer-with-days-and-seconds\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript Countdown Timer with Days and Seconds &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a lightweight JavaScript code snippet to create countdown timer with days and seconds. You can view demo and download source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/\" \/>\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-10T17:47:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:48:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/JavaScript-Countdown-Timer-.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\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"JavaScript Countdown Timer with Days and Seconds\",\"datePublished\":\"2024-01-10T17:47:00+00:00\",\"dateModified\":\"2024-01-22T10:48:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/\"},\"wordCount\":132,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/JavaScript-Countdown-Timer-.png\",\"articleSection\":[\"Date &amp; Time\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/\",\"url\":\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/\",\"name\":\"JavaScript Countdown Timer with Days and Seconds &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/JavaScript-Countdown-Timer-.png\",\"datePublished\":\"2024-01-10T17:47:00+00:00\",\"dateModified\":\"2024-01-22T10:48:27+00:00\",\"description\":\"Here is a lightweight JavaScript code snippet to create countdown timer with days and seconds. You can view demo and download source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/JavaScript-Countdown-Timer-.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/JavaScript-Countdown-Timer-.png\",\"width\":1280,\"height\":960,\"caption\":\"JavaScript Countdown Timer with Days and Seconds\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Date &amp; Time\",\"item\":\"https:\/\/codehim.com\/category\/date-time\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"JavaScript Countdown Timer with Days and Seconds\"}]},{\"@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":"JavaScript Countdown Timer with Days and Seconds &#8212; CodeHim","description":"Here is a lightweight JavaScript code snippet to create countdown timer with days and seconds. You can view demo and download 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\/date-time\/javascript-countdown-timer-with-days-and-seconds\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript Countdown Timer with Days and Seconds &#8212; CodeHim","og_description":"Here is a lightweight JavaScript code snippet to create countdown timer with days and seconds. You can view demo and download source code.","og_url":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-10T17:47:00+00:00","article_modified_time":"2024-01-22T10:48:27+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/JavaScript-Countdown-Timer-.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\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"JavaScript Countdown Timer with Days and Seconds","datePublished":"2024-01-10T17:47:00+00:00","dateModified":"2024-01-22T10:48:27+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/"},"wordCount":132,"commentCount":1,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/JavaScript-Countdown-Timer-.png","articleSection":["Date &amp; Time"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/","url":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/","name":"JavaScript Countdown Timer with Days and Seconds &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/JavaScript-Countdown-Timer-.png","datePublished":"2024-01-10T17:47:00+00:00","dateModified":"2024-01-22T10:48:27+00:00","description":"Here is a lightweight JavaScript code snippet to create countdown timer with days and seconds. You can view demo and download source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/JavaScript-Countdown-Timer-.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/05\/JavaScript-Countdown-Timer-.png","width":1280,"height":960,"caption":"JavaScript Countdown Timer with Days and Seconds"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/date-time\/javascript-countdown-timer-with-days-and-seconds\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Date &amp; Time","item":"https:\/\/codehim.com\/category\/date-time\/"},{"@type":"ListItem","position":3,"name":"JavaScript Countdown Timer with Days and Seconds"}]},{"@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":8219,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/6761","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=6761"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/6761\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/6789"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=6761"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=6761"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=6761"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}