{"id":3680,"date":"2022-10-08T12:34:40","date_gmt":"2022-10-08T07:34:40","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3680"},"modified":"2022-10-08T12:34:43","modified_gmt":"2022-10-08T07:34:43","slug":"how-to-make-a-notes-app-using-html5-css3-javascript","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/","title":{"rendered":"How to Make a Notes App using HTML5, CSS3 &#038; JavaScript"},"content":{"rendered":"\n<p>In this tutorial, I will teach you\u00a0<strong>how to create a Notes app<\/strong>\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Notes app is given below.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">HTML5, CSS3, JavaScript Notes 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;Notes 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;popup-box&quot;&gt;\n      &lt;div class=&quot;popup&quot;&gt;\n        &lt;div class=&quot;content&quot;&gt;\n          &lt;header&gt;\n            &lt;p&gt;&lt;\/p&gt;\n            &lt;i class=&quot;uil uil-times&quot;&gt;&lt;\/i&gt;\n          &lt;\/header&gt;\n          &lt;form action=&quot;#&quot;&gt;\n            &lt;div class=&quot;row title&quot;&gt;\n              &lt;label&gt;Title&lt;\/label&gt;\n              &lt;input type=&quot;text&quot; spellcheck=&quot;false&quot;&gt;\n            &lt;\/div&gt;\n            &lt;div class=&quot;row description&quot;&gt;\n              &lt;label&gt;Description&lt;\/label&gt;\n              &lt;textarea spellcheck=&quot;false&quot;&gt;&lt;\/textarea&gt;\n            &lt;\/div&gt;\n            &lt;button&gt;&lt;\/button&gt;\n          &lt;\/form&gt;\n        &lt;\/div&gt;\n      &lt;\/div&gt;\n    &lt;\/div&gt;\n    &lt;div class=&quot;wrapper&quot;&gt;\n      &lt;li class=&quot;add-box&quot;&gt;\n        &lt;div class=&quot;icon&quot;&gt;&lt;i class=&quot;uil uil-plus&quot;&gt;&lt;\/i&gt;&lt;\/div&gt;\n        &lt;p&gt;Add new note&lt;\/p&gt;\n      &lt;\/li&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 addBox = document.querySelector(&quot;.add-box&quot;),\npopupBox = document.querySelector(&quot;.popup-box&quot;),\npopupTitle = popupBox.querySelector(&quot;header p&quot;),\ncloseIcon = popupBox.querySelector(&quot;header i&quot;),\ntitleTag = popupBox.querySelector(&quot;input&quot;),\ndescTag = popupBox.querySelector(&quot;textarea&quot;),\naddBtn = popupBox.querySelector(&quot;button&quot;);\n\nconst months = [&quot;January&quot;, &quot;February&quot;, &quot;March&quot;, &quot;April&quot;, &quot;May&quot;, &quot;June&quot;, &quot;July&quot;,\n              &quot;August&quot;, &quot;September&quot;, &quot;October&quot;, &quot;November&quot;, &quot;December&quot;];\nconst notes = JSON.parse(localStorage.getItem(&quot;notes&quot;) || &quot;[]&quot;);\nlet isUpdate = false, updateId;\n\naddBox.addEventListener(&quot;click&quot;, () =&gt; {\n    popupTitle.innerText = &quot;Add a new Note&quot;;\n    addBtn.innerText = &quot;Add Note&quot;;\n    popupBox.classList.add(&quot;show&quot;);\n    document.querySelector(&quot;body&quot;).style.overflow = &quot;hidden&quot;;\n    if(window.innerWidth &gt; 660) titleTag.focus();\n});\n\ncloseIcon.addEventListener(&quot;click&quot;, () =&gt; {\n    isUpdate = false;\n    titleTag.value = descTag.value = &quot;&quot;;\n    popupBox.classList.remove(&quot;show&quot;);\n    document.querySelector(&quot;body&quot;).style.overflow = &quot;auto&quot;;\n});\n\nfunction showNotes() {\n    if(!notes) return;\n    document.querySelectorAll(&quot;.note&quot;).forEach(li =&gt; li.remove());\n    notes.forEach((note, id) =&gt; {\n        let filterDesc = note.description.replaceAll(&quot;\\n&quot;, '&lt;br\/&gt;');\n        let liTag = `&lt;li class=&quot;note&quot;&gt;\n                        &lt;div class=&quot;details&quot;&gt;\n                            &lt;p&gt;${note.title}&lt;\/p&gt;\n                            &lt;span&gt;${filterDesc}&lt;\/span&gt;\n                        &lt;\/div&gt;\n                        &lt;div class=&quot;bottom-content&quot;&gt;\n                            &lt;span&gt;${note.date}&lt;\/span&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;menu&quot;&gt;\n                                    &lt;li onclick=&quot;updateNote(${id}, '${note.title}', '${filterDesc}')&quot;&gt;&lt;i class=&quot;uil uil-pen&quot;&gt;&lt;\/i&gt;Edit&lt;\/li&gt;\n                                    &lt;li onclick=&quot;deleteNote(${id})&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;\/div&gt;\n                    &lt;\/li&gt;`;\n        addBox.insertAdjacentHTML(&quot;afterend&quot;, liTag);\n    });\n}\nshowNotes();\n\nfunction showMenu(elem) {\n    elem.parentElement.classList.add(&quot;show&quot;);\n    document.addEventListener(&quot;click&quot;, e =&gt; {\n        if(e.target.tagName != &quot;I&quot; || e.target != elem) {\n            elem.parentElement.classList.remove(&quot;show&quot;);\n        }\n    });\n}\n\nfunction deleteNote(noteId) {\n    let confirmDel = confirm(&quot;Are you sure you want to delete this note?&quot;);\n    if(!confirmDel) return;\n    notes.splice(noteId, 1);\n    localStorage.setItem(&quot;notes&quot;, JSON.stringify(notes));\n    showNotes();\n}\n\nfunction updateNote(noteId, title, filterDesc) {\n    let description = filterDesc.replaceAll('&lt;br\/&gt;', '\\r\\n');\n    updateId = noteId;\n    isUpdate = true;\n    addBox.click();\n    titleTag.value = title;\n    descTag.value = description;\n    popupTitle.innerText = &quot;Update a Note&quot;;\n    addBtn.innerText = &quot;Update Note&quot;;\n}\n\naddBtn.addEventListener(&quot;click&quot;, e =&gt; {\n    e.preventDefault();\n    let title = titleTag.value.trim(),\n    description = descTag.value.trim();\n\n    if(title || description) {\n        let currentDate = new Date(),\n        month = months[currentDate.getMonth()],\n        day = currentDate.getDate(),\n        year = currentDate.getFullYear();\n\n        let noteInfo = {title, description, date: `${month} ${day}, ${year}`}\n        if(!isUpdate) {\n            notes.push(noteInfo);\n        } else {\n            isUpdate = false;\n            notes[updateId] = noteInfo;\n        }\n        localStorage.setItem(&quot;notes&quot;, JSON.stringify(notes));\n        showNotes();\n        closeIcon.click();\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  background: #88ABFF;\n}\n::selection{\n  color: #fff;\n  background: #618cf8;\n}\n.wrapper{\n  margin: 50px;\n  display: grid;\n  gap: 25px;\n  grid-template-columns: repeat(auto-fill, 265px);\n}\n.wrapper li{\n  height: 250px;\n  list-style: none;\n  border-radius: 5px;\n  padding: 15px 20px 20px;\n  background: #fff;\n  box-shadow: 0 4px 8px rgba(0,0,0,0.05);\n}\n.add-box, .icon, .bottom-content, \n.popup, header, .settings .menu li{\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n}\n.add-box{\n  cursor: pointer;\n  flex-direction: column;\n  justify-content: center;\n}\n.add-box .icon{\n  height: 78px;\n  width: 78px;\n  color: #88ABFF;\n  font-size: 40px;\n  border-radius: 50%;\n  justify-content: center;\n  border: 2px dashed #88ABFF;\n}\n.add-box p{\n  color: #88ABFF;\n  font-weight: 500;\n  margin-top: 20px;\n}\n.note{\n  display: flex;\n  flex-direction: column;\n  justify-content: space-between;\n}\n.note .details{\n  max-height: 165px;\n  overflow-y: auto;\n}\n.note .details::-webkit-scrollbar,\n.popup textarea::-webkit-scrollbar{\n  width: 0;\n}\n.note .details:hover::-webkit-scrollbar,\n.popup textarea:hover::-webkit-scrollbar{\n  width: 5px;\n}\n.note .details:hover::-webkit-scrollbar-track,\n.popup textarea:hover::-webkit-scrollbar-track{\n  background: #f1f1f1;\n  border-radius: 25px;\n}\n.note .details:hover::-webkit-scrollbar-thumb,\n.popup textarea:hover::-webkit-scrollbar-thumb{\n  background: #e6e6e6;\n  border-radius: 25px;\n}\n.note p{\n  font-size: 22px;\n  font-weight: 500;\n}\n.note span{\n  display: block;\n  color: #575757;\n  font-size: 16px;\n  margin-top: 5px;\n}\n.note .bottom-content{\n  padding-top: 10px;\n  border-top: 1px solid #ccc;\n}\n.bottom-content span{\n  color: #6D6D6D;\n  font-size: 14px;\n}\n.bottom-content .settings{\n  position: relative;\n}\n.bottom-content .settings i{\n  color: #6D6D6D;\n  cursor: pointer;\n  font-size: 15px;\n}\n.settings .menu{\n  z-index: 1;\n  bottom: 0;\n  right: -5px;\n  padding: 5px 0;\n  background: #fff;\n  position: absolute;\n  border-radius: 4px;\n  transform: scale(0);\n  transform-origin: bottom right;\n  box-shadow: 0 0 6px rgba(0,0,0,0.15);\n  transition: transform 0.2s ease;\n}\n.settings.show .menu{\n  transform: scale(1);\n}\n.settings .menu li{\n  height: 25px;\n  font-size: 16px;\n  margin-bottom: 2px;\n  padding: 17px 15px;\n  cursor: pointer;\n  box-shadow: none;\n  border-radius: 0;\n  justify-content: flex-start;\n}\n.menu li:last-child{\n  margin-bottom: 0;\n}\n.menu li:hover{\n  background: #f5f5f5;\n}\n.menu li i{\n  padding-right: 8px;\n}\n\n.popup-box{\n  position: fixed;\n  top: 0;\n  left: 0;\n  z-index: 2;\n  height: 100%;\n  width: 100%;\n  background: rgba(0,0,0,0.4);\n}\n.popup-box .popup{\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  z-index: 3;\n  width: 100%;\n  max-width: 400px;\n  justify-content: center;\n  transform: translate(-50%, -50%) scale(0.95);\n}\n.popup-box, .popup{\n  opacity: 0;\n  pointer-events: none;\n  transition: all 0.25s ease;\n}\n.popup-box.show, .popup-box.show .popup{\n  opacity: 1;\n  pointer-events: auto;\n}\n.popup-box.show .popup{\n  transform: translate(-50%, -50%) scale(1);\n}\n.popup .content{\n  border-radius: 5px;\n  background: #fff;\n  width: calc(100% - 15px);\n  box-shadow: 0 0 15px rgba(0,0,0,0.1);\n}\n.content header{\n  padding: 15px 25px;\n  border-bottom: 1px solid #ccc;\n}\n.content header p{\n  font-size: 20px;\n  font-weight: 500;\n}\n.content header i{\n  color: #8b8989;\n  cursor: pointer;\n  font-size: 23px;\n}\n.content form{\n  margin: 15px 25px 35px;\n}\n.content form .row{\n  margin-bottom: 20px;\n}\nform .row label{\n  font-size: 18px;\n  display: block;\n  margin-bottom: 6px;\n}\nform :where(input, textarea){\n  height: 50px;\n  width: 100%;\n  outline: none;\n  font-size: 17px;\n  padding: 0 15px;\n  border-radius: 4px;\n  border: 1px solid #999;\n}\nform :where(input, textarea):focus{\n  box-shadow: 0 2px 4px rgba(0,0,0,0.11);\n}\nform .row textarea{\n  height: 150px;\n  resize: none;\n  padding: 8px 15px;\n}\nform button{\n  width: 100%;\n  height: 50px;\n  color: #fff;\n  outline: none;\n  border: none;\n  cursor: pointer;\n  font-size: 17px;\n  border-radius: 4px;\n  background: #6A93F8;\n}\n\n@media (max-width: 660px){\n  .wrapper{\n    margin: 15px;\n    gap: 15px;\n    grid-template-columns: repeat(auto-fill, 100%);\n  }\n  .popup-box .popup{\n    max-width: calc(100% - 15px);\n  }\n  .bottom-content .settings i{\n    font-size: 17px;\n  }\n}<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, I will teach you\u00a0how to create a Notes app\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Notes app is given below. HTML5, CSS3, JavaScript Notes App Source Code index.html script.js style.css<\/p>\n","protected":false},"author":1,"featured_media":3682,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3680","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 Notes App using HTML5, CSS3 &amp; JavaScript<\/title>\n<meta name=\"description\" content=\"In this tutorial, I will teach you\u00a0how to create a Notes app\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Notes app is\" \/>\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-notes-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 Notes App using HTML5, CSS3 &amp; JavaScript\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, I will teach you\u00a0how to create a Notes app\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Notes app is\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-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-08T07:34:40+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-08T07:34:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Notes-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 Notes App using HTML5, CSS3 & JavaScript","description":"In this tutorial, I will teach you\u00a0how to create a Notes app\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Notes app is","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-notes-app-using-html5-css3-javascript\/","og_locale":"en_US","og_type":"article","og_title":"How to Make a Notes App using HTML5, CSS3 & JavaScript","og_description":"In this tutorial, I will teach you\u00a0how to create a Notes app\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Notes app is","og_url":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-10-08T07:34:40+00:00","article_modified_time":"2022-10-08T07:34:43+00:00","og_image":[{"width":880,"height":495,"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Notes-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-notes-app-using-html5-css3-javascript\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"How to Make a Notes App using HTML5, CSS3 &#038; JavaScript","datePublished":"2022-10-08T07:34:40+00:00","dateModified":"2022-10-08T07:34:43+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/"},"wordCount":53,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Notes-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-notes-app-using-html5-css3-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/","url":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/","name":"How to Make a Notes App using HTML5, CSS3 & JavaScript","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Notes-App-in-HTML-CSS-JavaScript.jpg","datePublished":"2022-10-08T07:34:40+00:00","dateModified":"2022-10-08T07:34:43+00:00","description":"In this tutorial, I will teach you\u00a0how to create a Notes app\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Notes app is","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-app-using-html5-css3-javascript\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Notes-App-in-HTML-CSS-JavaScript.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Notes-App-in-HTML-CSS-JavaScript.jpg","width":880,"height":495,"caption":"How to Make a Notes App using HTML5, CSS3 & JavaScript"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-notes-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 Notes 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\/3680","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=3680"}],"version-history":[{"count":1,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3680\/revisions"}],"predecessor-version":[{"id":3681,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3680\/revisions\/3681"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/3682"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3680"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3680"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3680"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}