ToDo List JavaScript

Todo List in JavaScript Project | Todo List using HTML CSS & JavaScript With Source Code

Todo List in JavaScript Project

how to create todo list using html css javascript

Todo List HTML CSS & JavaScript With Source Code, Javascript Todo List with source code, Todo List in JavaScript Project | Todo List HTML CSS & JavaScript With Source Code, todo list with delete feature in javascript.

Build your to-do list app with help of JavaScript HTML and CSS download the source code of this to-do list app.

In this to-do list app tutorial, you will find source code for the to-do app with the help of HTML CSS, and JavaScript.

We have divided this to-do list app project tutorial, into three-part first HTML second CSS and third is JavaScript.

We have also provided you with the source code of this to-do list app project down below, so you can download it for reference. Todo List HTML CSS & JavaScript With Source Code

This to-do list app project is beginner-friendly where you can able to learn some very important fundamentals of creating elements in JavaScript.

And design the concept of UI with the help of HTML CSS and adding some classes with the help of JavaScript in this to-do list app.

Download the source code of this to-do list app for absolutely free.

Best beginner friendly project, is to do list app

Todo List using HTML CSS & JavaScript With Source Code

Here in this tutorial, I have explained everything about this to-do list with the help of CSS HTML JavaScript.

Whatever property we have used we have explained in detail, so you can have a complete understanding that how you can build this to-do list app with the help of HTML CSS, and JavaScript.

Here in this article, we have provided you the to-do list app source code which is available for free to download and you can customize and use it for any web application.

We would highly appreciate you if you give any kind of credit to us that will motivate us to make this kind of project and share it with you all.

javascript project for beginners

Happy happy learning JavaScript HTML and CSS.

HTML Code

<div class=”app”>
      <div class=”app-info”>
        <i class=”uil uil-adjust-circle”></i>
        <h1>ToDo List</h1>
      </div>
      <div class=”dotolist-conatiner”>
        <div class=”inputField”>
          <input type=”text” placeholder=”type your list..” id=”input” />
          <i class=”uil uil-plus”></i>
        </div>
        <div class=”add-list”></div>
      </div>
    </div>

CSS Code

:root {
        –icons-color: #4c5773;
        –icons-bg-color: #e2e6e9;
        –shadow-dark-color: #d3dae7;
        –shadow-light-color: #fff;
        –main-bg-color: #ecf0f3;

        –box-shadow: 1rem 1rem 1rem var(–shadow-dark-color),
          -1rem -1rem 1rem var(–shadow-light-color);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        background: var(–main-bg-color);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
      }

      .app {
        width: 300px;
        height: 500px;
        background: var(–main-bg-color);
        box-shadow: var(–box-shadow);
        padding: 2rem;
        border-radius: 2rem;
        overflow: hidden;
      }

      .app .app-info {
        display: flex;
        justify-content: start;
        align-items: center;
        margin-bottom: 2rem;
       
      }

      .app-info i {
        font-size: 45px;
        background: var(–icons-color);
        padding: 0.5rem;
        color: var(–main-bg-color);
        margin-right: 1rem;
        border-radius: 30%;
      }

      h1 {
        color: var(–icons-color);
        font-family: “Times New Roman”, Times, serif;
      }

      .dotolist-conatiner {
        width: 100%;
        height: 80%;
      }

      .dotolist-conatiner .inputField {
        background: var(–main-bg-color);
        box-shadow: var(–box-shadow);
        border-radius: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      input {
        width: 80%;
        height: 40px;
        outline: none;
        border: none;

        background: var(–main-bg-color);
      }

      .inputField input[type=”text”] {
        margin-left: 1rem;
      }

      .inputField i {
        font-size: 20px;
        margin-right: 1rem;
        cursor: pointer;
      }

      .create-div {
        width: 100%;
        height: 40px;
        background: var(–icons-bg-color);
        margin-top: 1rem;
        border-radius: 1rem;
        display: flex;
        justify-content: start;
        align-items: center;
        padding-left: 1rem;
        cursor: pointer;
      }

Javascript Code

const addList = document.querySelector(“.add-list”);
      const addBtn = document.querySelector(“.uil-plus”);
      const inputField = document.getElementById(“input”);

      addBtn.addEventListener(‘click’, ()=>{
         
        const createElement = document.createElement(‘div’);
        createElement.classList.add(‘create-div’);
        createElement.innerText = inputField.value;
        addList.appendChild(createElement);
        inputField.value = “”;


        createElement.addEventListener(‘click’, ()=>{
            createElement.style.textDecoration = ‘line-through’
        })

        createElement.addEventListener(‘dblclick’, ()=>{
            addList.removeChild(createElement);
        })

      })

Health Calculator

JavaScript project source code download

Just Wait We Are Preparing The To Download

My Services

Recent Post

Todo List in JavaScript Project | Todo List using HTML CSS & JavaScript With Source Code

Todo List in JavaScript Project

how to create todo list using html css javascript

Javascript Todo List with source code, Todo List in JavaScript Project | Todo List HTML CSS & JavaScript With Source Code, todo list with delete feature in javascript.

Build your to-do list app with help of JavaScript HTML and CSS download the source code of this to-do list app.

In this to-do list app tutorial, you will find source code for the to-do app with the help of HTML CSS, and JavaScript.

We have divided this to-do list app project tutorial, into three-part first HTML second CSS and third is JavaScript.

We have also provided you with the source code of this to-do list app project down below, so you can download it for reference.

This to-do list app project is beginner-friendly where you can able to learn some very important fundamentals of creating elements in JavaScript.

And design the concept of UI with the help of HTML CSS and adding some classes with the help of JavaScript in this to-do list app.

Download the source code of this to-do list app for absolutely free.

Best beginner friendly project, is to do list app

Todo List using HTML CSS & JavaScript With Source Code

Here in this tutorial, I have explained everything about this to-do list with the help of CSS HTML JavaScript.

Whatever property we have used we have explained in detail, so you can have a complete understanding that how you can build this to-do list app with the help of HTML CSS, and JavaScript.

Here in this article, we have provided you the to-do list app source code which is available for free to download and you can customize and use it for any web application.

We would highly appreciate you if you give any kind of credit to us that will motivate us to make this kind of project and share it with you all.

javascript project for beginners

Happy happy learning JavaScript HTML and CSS.

HTML Code

<div class=”app”>
      <div class=”app-info”>
        <i class=”uil uil-adjust-circle”></i>
        <h1>ToDo List</h1>
      </div>
      <div class=”dotolist-conatiner”>
        <div class=”inputField”>
          <input type=”text” placeholder=”type your list..” id=”input” />
          <i class=”uil uil-plus”></i>
        </div>
        <div class=”add-list”></div>
      </div>
    </div>

CSS Code

:root {
        –icons-color: #4c5773;
        –icons-bg-color: #e2e6e9;
        –shadow-dark-color: #d3dae7;
        –shadow-light-color: #fff;
        –main-bg-color: #ecf0f3;

        –box-shadow: 1rem 1rem 1rem var(–shadow-dark-color),
          -1rem -1rem 1rem var(–shadow-light-color);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        background: var(–main-bg-color);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
      }

      .app {
        width: 300px;
        height: 500px;
        background: var(–main-bg-color);
        box-shadow: var(–box-shadow);
        padding: 2rem;
        border-radius: 2rem;
        overflow: hidden;
      }

      .app .app-info {
        display: flex;
        justify-content: start;
        align-items: center;
        margin-bottom: 2rem;
       
      }

      .app-info i {
        font-size: 45px;
        background: var(–icons-color);
        padding: 0.5rem;
        color: var(–main-bg-color);
        margin-right: 1rem;
        border-radius: 30%;
      }

      h1 {
        color: var(–icons-color);
        font-family: “Times New Roman”, Times, serif;
      }

      .dotolist-conatiner {
        width: 100%;
        height: 80%;
      }

      .dotolist-conatiner .inputField {
        background: var(–main-bg-color);
        box-shadow: var(–box-shadow);
        border-radius: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      input {
        width: 80%;
        height: 40px;
        outline: none;
        border: none;

        background: var(–main-bg-color);
      }

      .inputField input[type=”text”] {
        margin-left: 1rem;
      }

      .inputField i {
        font-size: 20px;
        margin-right: 1rem;
        cursor: pointer;
      }

      .create-div {
        width: 100%;
        height: 40px;
        background: var(–icons-bg-color);
        margin-top: 1rem;
        border-radius: 1rem;
        display: flex;
        justify-content: start;
        align-items: center;
        padding-left: 1rem;
        cursor: pointer;
      }

Javascript Code

const addList = document.querySelector(“.add-list”);
      const addBtn = document.querySelector(“.uil-plus”);
      const inputField = document.getElementById(“input”);

      addBtn.addEventListener(‘click’, ()=>{
         
        const createElement = document.createElement(‘div’);
        createElement.classList.add(‘create-div’);
        createElement.innerText = inputField.value;
        addList.appendChild(createElement);
        inputField.value = “”;


        createElement.addEventListener(‘click’, ()=>{
            createElement.style.textDecoration = ‘line-through’
        })

        createElement.addEventListener(‘dblclick’, ()=>{
            addList.removeChild(createElement);
        })

      })

Health Calculator

JavaScript project source code download

Just Wait We Are Preparing The To Download

My Services

Recent Post

Daulat Hussain projects

To-do List JavaScript

Daulat Hussain Profile

Welcome

Todo List in JavaScript Project | Todo List using HTML CSS & JavaScript With Source Code

Todo List in JavaScript Project

Javascript Todo List with source code, Todo List in JavaScript Project | Todo List HTML CSS & JavaScript With Source Code, todo list with delete feature in javascript.

Build your to-do list app with help of JavaScript HTML and CSS download the source code of this to-do list app.

In this to-do list app tutorial, you will find source code for the to-do app with the help of HTML CSS, and JavaScript.

We have divided this to-do list app project tutorial, into three-part first HTML second CSS and third is JavaScript.

HEALTH CALCULATOR

We have divided this to-do list app project tutorial, into three-part first HTML second CSS and third is JavaScript.

We have also provided you with the source code of this to-do list app project down below, so you can download it for reference.

How to create todo list using html css javascript

javascript project for beginners

This to-do list app project is beginner-friendly where you can able to learn some very important fundamentals of creating elements in JavaScript.

And design the concept of UI with the help of HTML CSS and adding some classes with the help of JavaScript in this to-do list app.

Download the source code of this to-do list app for absolutely free.

The best beginner-friendly project, is to-do list app

Todo List using HTML CSS & JavaScript With Source Code

Here in this tutorial, I have explained everything about this to-do list with the help of CSS HTML JavaScript.

Whatever property we have used we have explained in detail, so you can have a complete understanding that how you can build this to-do list app with the help of HTML CSS, and JavaScript.

Here in this article, we have provided you the to-do list app source code which is available for free to download and you can customize and use it for any web application.

We would highly appreciate you if you give any kind of credit to us that will motivate us to make this kind of project and share it with you all.

Happy happy learning JavaScript HTML and CSS.

HTML Code

<div class=”app”>
      <div class=”app-info”>
        <i class=”uil uil-adjust-circle”></i>
        <h1>ToDo List</h1>
      </div>
      <div class=”dotolist-conatiner”>
        <div class=”inputField”>
          <input type=”text” placeholder=”type your list..” id=”input” />
          <i class=”uil uil-plus”></i>
        </div>
        <div class=”add-list”></div>
      </div>
    </div>

CSS Code

:root {
        –icons-color: #4c5773;
        –icons-bg-color: #e2e6e9;
        –shadow-dark-color: #d3dae7;
        –shadow-light-color: #fff;
        –main-bg-color: #ecf0f3;

        –box-shadow: 1rem 1rem 1rem var(–shadow-dark-color),
          -1rem -1rem 1rem var(–shadow-light-color);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        background: var(–main-bg-color);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
      }

      .app {
        width: 300px;
        height: 500px;
        background: var(–main-bg-color);
        box-shadow: var(–box-shadow);
        padding: 2rem;
        border-radius: 2rem;
        overflow: hidden;
      }

      .app .app-info {
        display: flex;
        justify-content: start;
        align-items: center;
        margin-bottom: 2rem;
       
      }

      .app-info i {
        font-size: 45px;
        background: var(–icons-color);
        padding: 0.5rem;
        color: var(–main-bg-color);
        margin-right: 1rem;
        border-radius: 30%;
      }

      h1 {
        color: var(–icons-color);
        font-family: “Times New Roman”, Times, serif;
      }

      .dotolist-conatiner {
        width: 100%;
        height: 80%;
      }

      .dotolist-conatiner .inputField {
        background: var(–main-bg-color);
        box-shadow: var(–box-shadow);
        border-radius: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      input {
        width: 80%;
        height: 40px;
        outline: none;
        border: none;

        background: var(–main-bg-color);
      }

      .inputField input[type=”text”] {
        margin-left: 1rem;
      }

      .inputField i {
        font-size: 20px;
        margin-right: 1rem;
        cursor: pointer;
      }

      .create-div {
        width: 100%;
        height: 40px;
        background: var(–icons-bg-color);
        margin-top: 1rem;
        border-radius: 1rem;
        display: flex;
        justify-content: start;
        align-items: center;
        padding-left: 1rem;
        cursor: pointer;
      }

Javascript Code

const addList = document.querySelector(“.add-list”);
      const addBtn = document.querySelector(“.uil-plus”);
      const inputField = document.getElementById(“input”);

      addBtn.addEventListener(‘click’, ()=>{
         
        const createElement = document.createElement(‘div’);
        createElement.classList.add(‘create-div’);
        createElement.innerText = inputField.value;
        addList.appendChild(createElement);
        inputField.value = “”;


        createElement.addEventListener(‘click’, ()=>{
            createElement.style.textDecoration = ‘line-through’
        })

        createElement.addEventListener(‘dblclick’, ()=>{
            addList.removeChild(createElement);
        })

      })

Just Wait We Are Preparing The To Download

Recent Post

HTML, CSS & JAVASCRIPT

JavaScript is the world’s most popular programming language. JavaScript is the programming language of the Web

Develop Your Understanding While building HTML, CSS & JavaScript Projects. Find All The Project Source Code.

My Services