Nedramrez / to-do-list

This simple web page will be built using webpack and served by a webpack dev server.
MIT License
0 stars 0 forks source link

To do list: Project 1 - List Structure #4

Closed Nedramrez closed 1 year ago

Nedramrez commented 1 year ago
  1. Set up a new project with webpack
  2. Add an index.html file as a template using the HTML Webpack Plugin.
  3. Add an HTML markup
  4. Add an empty To Do List placeholder
  5. Add an index.html file set
  6. Set an array of to-do tasks array of objects
  7. Set 3 keys for each object: description [string], completed [bool], index: [number]
  8. Write a function to populate an HTML list item element for each task
  9. Render the created list of tasks dynamically in the dedicated placeholder
  10. The list appears in order of the index values for each task
  11. Create a style.css and set rules for the To-Do List
  12. CSS loaded by Webpack Style/CSS Loader
  13. Update a README.md file according to the newly updated readme template
Nedramrez commented 1 year ago

Thank you!