carloshs1994 / To-Do-List

This is a repo to build a simple to-do list using JavaScript, HTML, and CSS. The elements are created dynamically.
7 stars 0 forks source link

MileStone 1: List structure #1

Closed carloshs1994 closed 2 years ago

carloshs1994 commented 2 years ago

In this Milestone:

✅ Set up a new project with webpack ✅ Create an index.html file. The index.html file must be set as a template using the HTML Webpack Plugin. ✅ Write a function to iterate over the tasks array and populate an HTML list item element for each task. ✅ On page load render the dynamically created list of tasks in the dedicated placeholder. ✅ Create a style.css and set rules for the To-Do List. CSS must be loaded by Webpack Style/CSS Loader ✅ All your source files (index.html, index.js, and style.css) must be located in /src directory and your distribution files will be generated by webpack and served by webpack dev server from /dist folder.