{"id":5804,"date":"2024-01-11T16:40:00","date_gmt":"2024-01-11T16:40:00","guid":{"rendered":"https:\/\/codehim.com\/?p=5804"},"modified":"2024-01-22T14:45:05","modified_gmt":"2024-01-22T09:45:05","slug":"simple-to-do-list-using-bootstrap-5","status":"publish","type":"post","link":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/","title":{"rendered":"Simple To Do List Using Bootstrap 5"},"content":{"rendered":"<p>Yet another code snippet to create a simple to do list using Bootstrap 5. It allows users to add and remove and modify tasks lists. You can easily integrate this lightweight code to create to-do lists according to your needs.<\/p>\n<h2>How to Create To-Do List Using Bootstrap 5<\/h2>\n<p>1. In the very first step, load the <a href=\"https:\/\/getbootstrap.com\/docs\/5.0\/getting-started\/introduction\/\" target=\"_blank\" rel=\"noopener\">Bootstrap 5 CSS<\/a> into the head tag of your webpage.<\/p>\n<pre class=\"prettyprint linenums lang-html\">    &lt;!-- Bootstrap 5 CSS --&gt;\r\n    &lt;link href=\"https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.1.0\/dist\/css\/bootstrap.min.css\" rel=\"stylesheet\" integrity=\"sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p\/We\" crossorigin=\"anonymous\"&gt;\r\n<\/pre>\n<p>2. After that, create the HTML structure for the to-do list as follows:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\" container rounded-3 border border-2 border-dark my-5 bg-white\" style=\"height:auto;\"&gt;\r\n        &lt;div&gt;\r\n        &lt;h1 class=\" h1\"&gt;To Do List&lt;\/h1&gt; \r\n    &lt;div class=\"row\"&gt;\r\n            &lt;div class=\" col-8\"&gt;\r\n        &lt;input class=\" py-3 form-control shadow\" placeholder=\"input your task\" type=\"text\" id=\"inputText\"&gt; \r\n            &lt;\/div&gt;\r\n            &lt;div class=\"col-2\"&gt;\r\n                &lt;!-- &lt;i onclick=\"addList()\" class=\" btn btn-dark rounded-pill fas fa-4x fa-plus-circle \"&gt;&lt;\/i&gt; --&gt;\r\n                &lt;button onclick=\"addList()\" class=\" mt-2 btn btn-dark\"&gt; Add &lt;\/button&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n        &lt;hr&gt;\r\n    &lt;div class=\"row rounded bg-white\"&gt;\r\n        &lt;div class=\" col-12\"&gt; \r\n        &lt;ul class=\" list-group\" id=\"list\"&gt;&lt;\/ul&gt;\r\n        &lt;\/div&gt; \r\n    &lt;\/div&gt; \r\n &lt;\/div&gt;\r\n<\/pre>\n<p>3. Finally, add the following to-do list JavaScript program into your project and done.<\/p>\n<pre class=\"prettyprint linenums lang-js\">let input = document.getElementById(\"inputText\");\r\n        let list= document.getElementById(\"list\");\r\n        let minimalValue = 3;\r\n        let listNum = 0;\r\naddList=()=&gt;{\r\n    \/\/ get\r\n    let inputText = filterList(input.value);\r\n    \/\/ set \r\n   if (inputText) {\r\n    list.innerHTML += ` &lt;li class=\" my-3 py-3 shadow list-group-item \" id=\"list${listNum}\"&gt;\r\n                &lt;div class=\"row\"&gt;\r\n                &lt;div class=\"col-1\"&gt;\r\n                &lt;input class=\"\" type=\"checkbox\" id=\"check${listNum}\" onclick=\"done(${listNum})\"&gt;\r\n                &lt;\/div&gt;\r\n                &lt;div class=\"col-6\"&gt;\r\n                    &lt;span class=\" h4\" id=\"text${listNum}\"&gt; ${inputText} &lt;\/span&gt;\r\n                &lt;\/div&gt;\r\n                &lt;div class=\"col-4\"&gt;\r\n                     &lt;button class=\" btn btn-dark\" onclick=\"deleteList(${listNum})\"&gt;Delete&lt;\/button&gt;\r\n                     &lt;button class=\" btn btn-dark\" onclick=\"editList(${listNum})\"&gt;Edit&lt;\/button&gt;\r\n                &lt;\/div&gt;                  \r\n                 &lt;\/div&gt;    \r\n                &lt;\/li&gt; `;\r\n        input.value=\" \";\r\n        listNum++;\r\n\r\n   }\r\n}\r\n\r\ndone=(listId)=&gt;{ \r\n    let checkbox = document.getElementById(`check${listId}`);\r\n    let current = document.getElementById(`text${listId}`);\r\n    let classExit=current.classList.contains(\"text-decoration-line-through\");\r\n    if (classExit == true) {\r\n        current.classList.remove(\"text-decoration-line-through\");\r\n    }else{\r\n        current.classList.add(\"text-decoration-line-through\");\r\n    }\r\n    \r\n}\r\n\r\nfilterList=(x)=&gt;{\r\n       if (x) {\r\n            if (x.length &gt;= minimalValue) {\r\n                return x;\r\n            }\r\n            else{\r\n                alert(\"Please enter more than 3 words\")\r\n            }\r\n       }\r\n       else{\r\n            return false;\r\n       }\r\n}\r\n\r\neditList=(listId)=&gt;{\r\n    let currentText = document.getElementById(`text${listId}`);\r\n    let newText = prompt(\"Wanna Change list?\",currentText.innerHTML);\r\n    if (filterList(newText)) {\r\n        currentText.innerHTML = newText; \r\n    }\r\n}\r\n\r\ndeleteList=(listId)=&gt;{\r\n    let current = document.getElementById(`text${listId}`).innerHTML;\r\n       let deleteComfirm = confirm(`Are you sure to delete ${current}`);\r\n    if (deleteComfirm) {\r\n         let p = document.getElementById(\"list\")\r\n        let c = document.getElementById(`list${listId}`);\r\n        p.removeChild(c);\r\n    }\r\n    else{\r\n        console.log(\"deleted\");\r\n    }\r\n};\r\n<\/pre>\n<p>Hopefully, you have successfully created a to-do lists for Bootstrap 5 projects. If you have any questions or suggestions, let me know by comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Yet another code snippet to create a simple to do list using Bootstrap 5. It allows users to add and&#8230;<\/p>\n","protected":false},"author":1,"featured_media":5806,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[123,207],"tags":[],"class_list":["post-5804","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bootstrap","category-bootstrap-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>Simple To Do List Using Bootstrap 5 &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a lightweight code snippet to create a simple to do list using Bootstrap 5 and JavaScript. You can view demo &amp; download 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\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Simple To Do List Using Bootstrap 5 &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a lightweight code snippet to create a simple to do list using Bootstrap 5 and JavaScript. You can view demo &amp; download code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/\" \/>\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:40:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T09:45:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/12\/simple-to-do-list-using-bootstrap-5.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\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Simple To Do List Using Bootstrap 5\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:45:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/\"},\"wordCount\":117,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/12\/simple-to-do-list-using-bootstrap-5.png\",\"articleSection\":[\"Bootstrap\",\"Bootstrap Text &amp; Input\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/\",\"url\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/\",\"name\":\"Simple To Do List Using Bootstrap 5 &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/12\/simple-to-do-list-using-bootstrap-5.png\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:45:05+00:00\",\"description\":\"Here is a lightweight code snippet to create a simple to do list using Bootstrap 5 and JavaScript. You can view demo & download code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/12\/simple-to-do-list-using-bootstrap-5.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/12\/simple-to-do-list-using-bootstrap-5.png\",\"width\":1280,\"height\":960,\"caption\":\"Simple To Do List Using Bootstrap 5\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bootstrap\",\"item\":\"https:\/\/codehim.com\/category\/bootstrap\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Bootstrap Text &amp; Input\",\"item\":\"https:\/\/codehim.com\/category\/bootstrap\/bootstrap-text-input\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Simple To Do List Using Bootstrap 5\"}]},{\"@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":"Simple To Do List Using Bootstrap 5 &#8212; CodeHim","description":"Here is a lightweight code snippet to create a simple to do list using Bootstrap 5 and JavaScript. You can view demo & download 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\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/","og_locale":"en_US","og_type":"article","og_title":"Simple To Do List Using Bootstrap 5 &#8212; CodeHim","og_description":"Here is a lightweight code snippet to create a simple to do list using Bootstrap 5 and JavaScript. You can view demo & download code.","og_url":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-11T16:40:00+00:00","article_modified_time":"2024-01-22T09:45:05+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/12\/simple-to-do-list-using-bootstrap-5.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\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Simple To Do List Using Bootstrap 5","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:45:05+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/"},"wordCount":117,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/12\/simple-to-do-list-using-bootstrap-5.png","articleSection":["Bootstrap","Bootstrap Text &amp; Input"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/","url":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/","name":"Simple To Do List Using Bootstrap 5 &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/12\/simple-to-do-list-using-bootstrap-5.png","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:45:05+00:00","description":"Here is a lightweight code snippet to create a simple to do list using Bootstrap 5 and JavaScript. You can view demo & download code.","breadcrumb":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/12\/simple-to-do-list-using-bootstrap-5.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/12\/simple-to-do-list-using-bootstrap-5.png","width":1280,"height":960,"caption":"Simple To Do List Using Bootstrap 5"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-text-input\/simple-to-do-list-using-bootstrap-5\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Bootstrap","item":"https:\/\/codehim.com\/category\/bootstrap\/"},{"@type":"ListItem","position":3,"name":"Bootstrap Text &amp; Input","item":"https:\/\/codehim.com\/category\/bootstrap\/bootstrap-text-input\/"},{"@type":"ListItem","position":4,"name":"Simple To Do List Using Bootstrap 5"}]},{"@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":21084,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/5804","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=5804"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/5804\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/5806"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=5804"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=5804"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=5804"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}