Todo List
A simple browser-based todo list with priority levels, filters, and local storage persistence. Add, complete, and delete tasks — no account required.
Stay on top of your tasks with a fast, browser-based todo list. No sign-up, no install — just open the page and start adding tasks. Everything is saved automatically in your browser's local storage, so your list is still there the next time you visit.
How to Use
- Type your task into the input field at the top of the tool.
- Optionally select a priority level (
Low,Medium, orHigh) from the dropdown. - Press Enter or click
Addto add the task to your list. - Click the checkbox on any task to mark it as complete.
- Use the
All,Active, andDonefilter tabs to focus on what matters. - Click
Clear completedto remove all finished tasks at once. - Click
Export .txtto download your list as a plain text file.
Priority Levels
Assigning a priority to a task makes it easier to spot what to tackle first. The priority badge is displayed next to each task label.
| Priority | Badge Colour | Use For |
|---|---|---|
High |
Red | Urgent tasks that must be done today |
Medium |
Yellow | Important tasks with a near deadline |
Low |
Green | Nice-to-have tasks with no fixed deadline |
| None | — | Everyday tasks where order doesn't matter |
Filter Tabs
The three filter tabs let you focus on a specific subset of your tasks:
- All — Shows every task regardless of completion status.
- Active — Shows only unchecked (not yet completed) tasks.
- Done — Shows only checked (completed) tasks.
The count next to each tab label updates live as you add or complete tasks.
Exporting Your List
Click Export .txt to download all tasks as a plain text file with checkbox-style notation:
[ ] Buy groceries (High)
[x] Send invoice
[ ] Read documentation (Low)
This format is compatible with most plain text editors and note-taking apps.
Data Storage
Your todo list is stored entirely in your browser using localStorage. This means:
- No data is sent to any server.
- The list persists across browser sessions on the same device.
- Clearing your browser's site data will erase the list — use
Export .txtto back up important tasks.
FAQ
Does my todo list sync across devices?
No. The list is stored in your browser's local storage, which is device-specific. To move your list to another device, use Export .txt to download it, then manually re-enter the tasks on the other device.
Will my tasks be lost if I close the browser?
No. Tasks are saved automatically to local storage as you add or change them. They will still be there the next time you open the tool in the same browser.
Can I edit a task after adding it?
Currently tasks are added as fixed text. To change a task, delete it and add a new one with the corrected text.
Is there a limit to how many tasks I can add?
There is no hard limit enforced by the tool. Browser local storage typically allows several megabytes of data, which is more than enough for thousands of tasks.
Can I reorder tasks?
Tasks appear in the order they were added. Reordering is not currently supported — use priority levels to visually distinguish which tasks are most important.
What happens when I click "Clear completed"?
All tasks marked as done are permanently removed from the list. This action cannot be undone, so export your list first if you want to keep a record of completed tasks.