diff --git a/README.md b/README.md new file mode 100644 index 0000000000000..1729ea1943605 --- /dev/null +++ b/README.md @@ -0,0 +1,48 @@ +🛠️ How to Use +Download the code +Save the provided HTML code as studyplanner.html. + +Open in a browser +Double-click the file or open it with Chrome, Firefox, or Edge. + +Add tasks + +Enter your study task in the input box. + +Click Add. + +Mark tasks as completed + +Click on a task to mark it done or undone. + +Check your progress + +The progress percentage updates automatically. + + + +🎨 Technologies Used +HTML5 – Structure of the website. + +CSS3 – Styling and responsive layout. + +JavaScript – Task functionality, progress calculation, and localStorage. + + + +🚀 Future Improvements +Add delete button for tasks. + +Add categories/subjects for better organization. + +Add dark mode toggle. + +Add reminder notifications for tasks. + + + +📌 Notes +This website works completely offline. + +Your tasks are saved only in the browser you use. Clearing browser data will delete all tasks. + diff --git a/index.html b/index.html new file mode 100644 index 0000000000000..4f5df54f6a2b1 --- /dev/null +++ b/index.html @@ -0,0 +1,114 @@ + + + + The study planner + + + + + +

📚 Smart Study Planner

+
+ + + + +
+ Progress: 0% +
+
+ + + + diff --git a/study.html b/study.html new file mode 100644 index 0000000000000..8fd4ed98bfaa0 --- /dev/null +++ b/study.html @@ -0,0 +1,121 @@ + + + + The study planner + + + + + +

📚 Smart Study Planner

+
+ + + + +
+ Progress: 0% +
+
+ + + + + + + + + + + \ No newline at end of file