Today I set up the basic skeleton of my todo app. I added index.html and style.css to create the UI and styling. It’s using a dark theme with CSS variables, a responsive wrapper, an input form for adding todos, custom checkboxes, and a layout for the todo items with delete button hover effects. I also put in some example todos in the HTML so I can see how it looks, but there’s no JavaScript yet.
I added a few gray SVG icons under the icons/ folder check, close, delete, and delete_forever which I’ll use later for marking tasks done or deleting them.
Next, I’ll work on adding JavaScript to make the todos actually functional and hook up the icons for interactions. I also want to make sure it looks good on smaller screens.