diff --git a/README.md b/README.md index e6fe0da..434adaf 100644 --- a/README.md +++ b/README.md @@ -171,12 +171,15 @@ please make sure to add a `README.md` file that follow the same construction as [README Template](https://github.com/pratham2402/mini-javascript-projects/blob/main/README_TEMPLATE.md) ##  Projects - | Sr No | Project | Description | Author | | ----- | --------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------- | | 1 | [Counter](https://github.com/pratham2402/mini-javascript-projects/tree/main/Counter) | This is a simple counter made using Javascript. | [Pratham Bhosale](https://github.com/pratham2402) | | 2 | [Color Flipper](https://github.com/pratham2402/mini-javascript-projects/tree/main/Color%20Flipper) | This is a simple color flipper made using Javascript. Get random colors and respective hex codes by clicking the button | [Pratham Bhosale](https://github.com/pratham2402) | | 3 | [Review Project](https://github.com/pratham2402/mini-javascript-projects/tree/main/Review%20Project) | This is a simple review project made using Javascript. Get review boxes. | [Pratham Bhosale](https://github.com/pratham2402) | +| 4 | [To-Do List](https://github.com/pratham2402/mini-javascript-projects/tree/main/Todo_list) | This is a simple to-do list made using Javascript. Complete your tasks today! | [saprameya](https://github.com/saprameya) | + + + ##  Our Contributors diff --git a/Review Project/app.js b/Review Project/app.js index 4f608fc..b7aacba 100644 --- a/Review Project/app.js +++ b/Review Project/app.js @@ -3,7 +3,7 @@ const reviews = [ { id: 1, name: 'susan smith', - job: '', + job: 'web developer', img: 'https://www.course-api.com/images/people/person-1.jpeg', text: "I'm baby meggings twee health goth +1. Bicycle rights tumeric chartreuse before they sold out chambray pop-up. Shaman humblebrag pickled coloring book salvia hoodie, cold-pressed four dollar toast everyday carry", }, diff --git a/Todo_list/README.md b/Todo_list/README.md new file mode 100644 index 0000000..f67f876 --- /dev/null +++ b/Todo_list/README.md @@ -0,0 +1,20 @@ + + + + +# Todo List +
+
+
+## 🛠️ Description
+
+A todo list where you can add and remove items.
+
+## ⚙️ Languages or Frameworks Used
+- JavaScript
+- HTML
+- CSS
+
+## 🤖 Author
+
+
diff --git a/Todo_list/images/checked.png b/Todo_list/images/checked.png
new file mode 100644
index 0000000..d26596a
Binary files /dev/null and b/Todo_list/images/checked.png differ
diff --git a/Todo_list/images/icon.png b/Todo_list/images/icon.png
new file mode 100644
index 0000000..5655235
Binary files /dev/null and b/Todo_list/images/icon.png differ
diff --git a/Todo_list/images/todolist.png b/Todo_list/images/todolist.png
new file mode 100644
index 0000000..317c917
Binary files /dev/null and b/Todo_list/images/todolist.png differ
diff --git a/Todo_list/images/unchecked.png b/Todo_list/images/unchecked.png
new file mode 100644
index 0000000..04a5c5f
Binary files /dev/null and b/Todo_list/images/unchecked.png differ
diff --git a/Todo_list/index.html b/Todo_list/index.html
new file mode 100644
index 0000000..e8ff3a5
--- /dev/null
+++ b/Todo_list/index.html
@@ -0,0 +1,27 @@
+
+
+
