{"id":3629,"date":"2022-10-07T21:54:40","date_gmt":"2022-10-07T16:54:40","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3629"},"modified":"2022-10-07T21:58:32","modified_gmt":"2022-10-07T16:58:32","slug":"how-to-make-a-todo-list-app-using-html5-css3-javascript","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/","title":{"rendered":"How to Make a Todo List App using HTML5, CSS3 &#038; JavaScript"},"content":{"rendered":"\n<p>In this tutorial, I will teach you <strong>how to create a Todo List app<\/strong> using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript to-do list app is given below.<\/p>\n\n\n\n<p>You can download the full source code (including images) of this JavaScript todo list app at the end of this article.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">HTML5, CSS3, JavaScript Todo List App Source Code<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">index.html<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">&lt;!DOCTYPE html&gt;\n&lt;html lang=&quot;en&quot; dir=&quot;ltr&quot;&gt;\n  &lt;head&gt;\n    &lt;meta charset=&quot;utf-8&quot;&gt;  \n    &lt;title&gt;Todo List App in JavaScript&lt;\/title&gt;\n    &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;\n    &lt;!-- Iconscout Link For Icons --&gt;\n    &lt;link rel=&quot;stylesheet&quot; href=&quot;https:\/\/unicons.iconscout.com\/release\/v4.0.0\/css\/line.css&quot;&gt;\n  &lt;\/head&gt;\n  &lt;body&gt;\n    &lt;div class=&quot;wrapper&quot;&gt;\n      &lt;div class=&quot;task-input&quot;&gt;\n        &lt;img src=&quot;bars-icon.svg&quot; alt=&quot;icon&quot;&gt;\n        &lt;input type=&quot;text&quot; placeholder=&quot;Add a new task&quot;&gt;\n      &lt;\/div&gt;\n      &lt;div class=&quot;controls&quot;&gt;\n        &lt;div class=&quot;filters&quot;&gt;\n          &lt;span class=&quot;active&quot; id=&quot;all&quot;&gt;All&lt;\/span&gt;\n          &lt;span id=&quot;pending&quot;&gt;Pending&lt;\/span&gt;\n          &lt;span id=&quot;completed&quot;&gt;Completed&lt;\/span&gt;\n        &lt;\/div&gt;\n        &lt;button class=&quot;clear-btn&quot;&gt;Clear All&lt;\/button&gt;\n      &lt;\/div&gt;\n      &lt;ul class=&quot;task-box&quot;&gt;&lt;\/ul&gt;\n    &lt;\/div&gt;\n\n    &lt;script src=&quot;script.js&quot;&gt;&lt;\/script&gt;\n\n  &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">script.js<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">const taskInput = document.querySelector(&quot;.task-input input&quot;),\nfilters = document.querySelectorAll(&quot;.filters span&quot;),\nclearAll = document.querySelector(&quot;.clear-btn&quot;),\ntaskBox = document.querySelector(&quot;.task-box&quot;);\n\nlet editId,\nisEditTask = false,\ntodos = JSON.parse(localStorage.getItem(&quot;todo-list&quot;));\n\nfilters.forEach(btn =&gt; {\n    btn.addEventListener(&quot;click&quot;, () =&gt; {\n        document.querySelector(&quot;span.active&quot;).classList.remove(&quot;active&quot;);\n        btn.classList.add(&quot;active&quot;);\n        showTodo(btn.id);\n    });\n});\n\nfunction showTodo(filter) {\n    let liTag = &quot;&quot;;\n    if(todos) {\n        todos.forEach((todo, id) =&gt; {\n            let completed = todo.status == &quot;completed&quot; ? &quot;checked&quot; : &quot;&quot;;\n            if(filter == todo.status || filter == &quot;all&quot;) {\n                liTag += `&lt;li class=&quot;task&quot;&gt;\n                            &lt;label for=&quot;${id}&quot;&gt;\n                                &lt;input onclick=&quot;updateStatus(this)&quot; type=&quot;checkbox&quot; id=&quot;${id}&quot; ${completed}&gt;\n                                &lt;p class=&quot;${completed}&quot;&gt;${todo.name}&lt;\/p&gt;\n                            &lt;\/label&gt;\n                            &lt;div class=&quot;settings&quot;&gt;\n                                &lt;i onclick=&quot;showMenu(this)&quot; class=&quot;uil uil-ellipsis-h&quot;&gt;&lt;\/i&gt;\n                                &lt;ul class=&quot;task-menu&quot;&gt;\n                                    &lt;li onclick='editTask(${id}, &quot;${todo.name}&quot;)'&gt;&lt;i class=&quot;uil uil-pen&quot;&gt;&lt;\/i&gt;Edit&lt;\/li&gt;\n                                    &lt;li onclick='deleteTask(${id}, &quot;${filter}&quot;)'&gt;&lt;i class=&quot;uil uil-trash&quot;&gt;&lt;\/i&gt;Delete&lt;\/li&gt;\n                                &lt;\/ul&gt;\n                            &lt;\/div&gt;\n                        &lt;\/li&gt;`;\n            }\n        });\n    }\n    taskBox.innerHTML = liTag || `&lt;span&gt;You don't have any task here&lt;\/span&gt;`;\n    let checkTask = taskBox.querySelectorAll(&quot;.task&quot;);\n    !checkTask.length ? clearAll.classList.remove(&quot;active&quot;) : clearAll.classList.add(&quot;active&quot;);\n    taskBox.offsetHeight &gt;= 300 ? taskBox.classList.add(&quot;overflow&quot;) : taskBox.classList.remove(&quot;overflow&quot;);\n}\nshowTodo(&quot;all&quot;);\n\nfunction showMenu(selectedTask) {\n    let menuDiv = selectedTask.parentElement.lastElementChild;\n    menuDiv.classList.add(&quot;show&quot;);\n    document.addEventListener(&quot;click&quot;, e =&gt; {\n        if(e.target.tagName != &quot;I&quot; || e.target != selectedTask) {\n            menuDiv.classList.remove(&quot;show&quot;);\n        }\n    });\n}\n\nfunction updateStatus(selectedTask) {\n    let taskName = selectedTask.parentElement.lastElementChild;\n    if(selectedTask.checked) {\n        taskName.classList.add(&quot;checked&quot;);\n        todos[selectedTask.id].status = &quot;completed&quot;;\n    } else {\n        taskName.classList.remove(&quot;checked&quot;);\n        todos[selectedTask.id].status = &quot;pending&quot;;\n    }\n    localStorage.setItem(&quot;todo-list&quot;, JSON.stringify(todos))\n}\n\nfunction editTask(taskId, textName) {\n    editId = taskId;\n    isEditTask = true;\n    taskInput.value = textName;\n    taskInput.focus();\n    taskInput.classList.add(&quot;active&quot;);\n}\n\nfunction deleteTask(deleteId, filter) {\n    isEditTask = false;\n    todos.splice(deleteId, 1);\n    localStorage.setItem(&quot;todo-list&quot;, JSON.stringify(todos));\n    showTodo(filter);\n}\n\nclearAll.addEventListener(&quot;click&quot;, () =&gt; {\n    isEditTask = false;\n    todos.splice(0, todos.length);\n    localStorage.setItem(&quot;todo-list&quot;, JSON.stringify(todos));\n    showTodo()\n});\n\ntaskInput.addEventListener(&quot;keyup&quot;, e =&gt; {\n    let userTask = taskInput.value.trim();\n    if(e.key == &quot;Enter&quot; &amp;&amp; userTask) {\n        if(!isEditTask) {\n            todos = !todos ? [] : todos;\n            let taskInfo = {name: userTask, status: &quot;pending&quot;};\n            todos.push(taskInfo);\n        } else {\n            isEditTask = false;\n            todos[editId].name = userTask;\n        }\n        taskInput.value = &quot;&quot;;\n        localStorage.setItem(&quot;todo-list&quot;, JSON.stringify(todos));\n        showTodo(document.querySelector(&quot;span.active&quot;).id);\n    }\n});<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">style.css<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;css&quot;}\">\/* Import Google Font - Poppins *\/\n@import url('https:\/\/fonts.googleapis.com\/css2?family=Poppins:wght@400;500;600;700&amp;display=swap');\n*{\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n  font-family: 'Poppins', sans-serif;\n}\nbody{\n  width: 100%;\n  height: 100vh;\n  overflow: hidden;\n  background: linear-gradient(135deg, #4AB1FF, #2D5CFE);\n}\n::selection{\n  color: #fff;\n  background: #3C87FF;\n}\n.wrapper{\n  max-width: 405px;\n  padding: 28px 0 30px;\n  margin: 137px auto;\n  background: #fff;\n  border-radius: 7px;\n  box-shadow: 0 10px 30px rgba(0,0,0,0.1);\n}\n.task-input{\n  height: 52px;\n  padding: 0 25px;\n  position: relative;\n}\n.task-input img{\n  top: 50%;\n  position: absolute;\n  transform: translate(17px, -50%);\n}\n.task-input input{\n  height: 100%;\n  width: 100%;\n  outline: none;\n  font-size: 18px;\n  border-radius: 5px;\n  padding: 0 20px 0 53px;\n  border: 1px solid #999;\n}\n.task-input input:focus,\n.task-input input.active{\n  padding-left: 52px;\n  border: 2px solid #3C87FF;\n}\n.task-input input::placeholder{\n  color: #bfbfbf;\n}\n.controls, li{\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n}\n.controls{\n  padding: 18px 25px;\n  border-bottom: 1px solid #ccc;\n}\n.filters span{\n  margin: 0 8px;\n  font-size: 17px;\n  color: #444444;\n  cursor: pointer;\n}\n.filters span:first-child{\n  margin-left: 0;\n}\n.filters span.active{\n  color: #3C87FF;\n}\n.controls .clear-btn{\n  border: none;\n  opacity: 0.6;\n  outline: none;\n  color: #fff;\n  cursor: pointer;\n  font-size: 13px;\n  padding: 7px 13px;\n  border-radius: 4px;\n  letter-spacing: 0.3px;\n  pointer-events: none;\n  transition: transform 0.25s ease;\n  background: linear-gradient(135deg, #1798fb 0%, #2D5CFE 100%);\n}\n.clear-btn.active{\n  opacity: 0.9;\n  pointer-events: auto;\n}\n.clear-btn:active{\n  transform: scale(0.93);\n}\n.task-box{\n  margin-top: 20px;\n  margin-right: 5px;\n  padding: 0 20px 10px 25px;\n}\n.task-box.overflow{\n  overflow-y: auto;\n  max-height: 300px;\n}\n.task-box::-webkit-scrollbar{\n  width: 5px;\n}\n.task-box::-webkit-scrollbar-track{\n  background: #f1f1f1;\n  border-radius: 25px;\n}\n.task-box::-webkit-scrollbar-thumb{\n  background: #e6e6e6;\n  border-radius: 25px;\n}\n.task-box .task{\n  list-style: none;\n  font-size: 17px;\n  margin-bottom: 18px;\n  padding-bottom: 16px;\n  align-items: flex-start;\n  border-bottom: 1px solid #ccc;\n}\n.task-box .task:last-child{\n  margin-bottom: 0;\n  border-bottom: 0;\n  padding-bottom: 0;\n}\n.task-box .task label{\n  display: flex;\n  align-items: flex-start;\n}\n.task label input{\n  margin-top: 7px;\n  accent-color: #3C87FF;\n}\n.task label p{\n  user-select: none;\n  margin-left: 12px;\n  word-wrap: break-word;\n}\n.task label p.checked{\n  text-decoration: line-through;\n}\n.task-box .settings{\n  position: relative;\n}\n.settings :where(i, li){\n  cursor: pointer;\n}\n.settings .task-menu{\n  z-index: 10;\n  right: -5px;\n  bottom: -65px;\n  padding: 5px 0;\n  background: #fff;\n  position: absolute;\n  border-radius: 4px;\n  transform: scale(0);\n  transform-origin: top right;\n  box-shadow: 0 0 6px rgba(0,0,0,0.15);\n  transition: transform 0.2s ease;\n}\n.task-box .task:last-child .task-menu{\n  bottom: 0;\n  transform-origin: bottom right;\n}\n.task-box .task:first-child .task-menu{\n  bottom: -65px;\n  transform-origin: top right;\n}\n.task-menu.show{\n  transform: scale(1);\n}\n.task-menu li{\n  height: 25px;\n  font-size: 16px;\n  margin-bottom: 2px;\n  padding: 17px 15px;\n  cursor: pointer;\n  justify-content: flex-start;\n}\n.task-menu li:last-child{\n  margin-bottom: 0;\n}\n.settings li:hover{\n  background: #f5f5f5;\n}\n.settings li i{\n  padding-right: 8px;\n}\n\n@media (max-width: 400px) {\n  body{\n    padding: 0 10px;\n  }\n  .wrapper {\n    padding: 20px 0;\n  }\n  .filters span{\n    margin: 0 5px;\n  }\n  .task-input{\n    padding: 0 20px;\n  }\n  .controls{\n    padding: 18px 20px;\n  }\n  .task-box{\n    margin-top: 20px;\n    margin-right: 5px;\n    padding: 0 15px 10px 20px;\n  }\n  .task label input{\n    margin-top: 4px;\n  }\n}<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Download Source Code (including images)<\/h2>\n\n\n<p><a class=\"ep_link_major\" href=\"https:\/\/edopedia.com\/assets\/downloads\/static\/javascript_todo_list_app.zip\" target=\"_blank\" rel=\"noopener\" download=\"\">Download<\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>In this tutorial, I will teach you how to create a Todo List app using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript to-do list app is given below. You can download the full source code (including images) of this JavaScript todo list app at the end of this article. HTML5, CSS3, &#8230; <a title=\"How to Make a Todo List App using HTML5, CSS3 &#038; JavaScript\" class=\"read-more\" href=\"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/\" aria-label=\"Read more about How to Make a Todo List App using HTML5, CSS3 &#038; JavaScript\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":3631,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3629","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Make a Todo List App using HTML5, CSS3 &amp; JavaScript<\/title>\n<meta name=\"description\" content=\"In this tutorial, I will teach you how to create a Todo List app using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript to-do list\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Make a Todo List App using HTML5, CSS3 &amp; JavaScript\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, I will teach you how to create a Todo List app using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript to-do list\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-07T16:54:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-07T16:58:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Create-A-Todo-List-App-in-HTML-CSS-JavaScript.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"880\" \/>\n\t<meta property=\"og:image:height\" content=\"495\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Make a Todo List App using HTML5, CSS3 & JavaScript","description":"In this tutorial, I will teach you how to create a Todo List app using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript to-do list","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:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/","og_locale":"en_US","og_type":"article","og_title":"How to Make a Todo List App using HTML5, CSS3 & JavaScript","og_description":"In this tutorial, I will teach you how to create a Todo List app using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript to-do list","og_url":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-10-07T16:54:40+00:00","article_modified_time":"2022-10-07T16:58:32+00:00","og_image":[{"width":880,"height":495,"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Create-A-Todo-List-App-in-HTML-CSS-JavaScript.jpg","type":"image\/jpeg"}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"How to Make a Todo List App using HTML5, CSS3 &#038; JavaScript","datePublished":"2022-10-07T16:54:40+00:00","dateModified":"2022-10-07T16:58:32+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/"},"wordCount":84,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Create-A-Todo-List-App-in-HTML-CSS-JavaScript.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/","url":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/","name":"How to Make a Todo List App using HTML5, CSS3 & JavaScript","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Create-A-Todo-List-App-in-HTML-CSS-JavaScript.jpg","datePublished":"2022-10-07T16:54:40+00:00","dateModified":"2022-10-07T16:58:32+00:00","description":"In this tutorial, I will teach you how to create a Todo List app using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript to-do list","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Create-A-Todo-List-App-in-HTML-CSS-JavaScript.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Create-A-Todo-List-App-in-HTML-CSS-JavaScript.jpg","width":880,"height":495,"caption":"How to Make a Todo List App using HTML5, CSS3 & JavaScript"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-todo-list-app-using-html5-css3-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Make a Todo List App using HTML5, CSS3 &#038; JavaScript"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3629","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=3629"}],"version-history":[{"count":2,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3629\/revisions"}],"predecessor-version":[{"id":3634,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3629\/revisions\/3634"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/3631"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3629"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3629"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3629"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}