Create the Project
Create the following folder structure:
text
todo-list/
└── index.html
index.html write the following placeholder html template:
html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todolist Application</title>
</head>
<body>
<h1>Todo List</h1>
<input type="text"
id="taskInput"
placeholder="Add a task"
/>
<button onclick="addTask()">Add Task</button>
<ul id="taskList">Your tasks go here ...</ul>
</body>
</html
index.html in a web browser.
Sign in to save your progress permanently.
Progress is saved in your browser session
Step 2 of 7