From ab2efa907428496dea55faff3f89032129d37078 Mon Sep 17 00:00:00 2001 From: Pranay Aswani Date: Thu, 6 Nov 2025 11:18:59 +0530 Subject: [PATCH 1/6] Adds Task Creation Functionality --- index.html | 21 ++++++++++++++++++++- script.js | 4 +++- style.css | 25 ++++++++++++++++++++++++- 3 files changed, 47 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 5ffe8f6..a06e265 100644 --- a/index.html +++ b/index.html @@ -5,8 +5,27 @@ Document + + +
+ + + + + Document + +

My Tasks

-
+
+
+ + +
+
+ + + +
\ No newline at end of file diff --git a/script.js b/script.js index 90dcc03..f336ab6 100644 --- a/script.js +++ b/script.js @@ -1 +1,3 @@ -console.log("Task Manager Loaded"); \ No newline at end of file +const handleClick = ()=>{ + console.log("Task added"); +} \ No newline at end of file diff --git a/style.css b/style.css index 10b9243..0e13ab8 100644 --- a/style.css +++ b/style.css @@ -8,4 +8,27 @@ body { h1 { text-align: center; color: #333; -} \ No newline at end of file +}body { + font-family: Arial, Helvetica, sans-serif; + max-width: 600px; + margin: 50px auto; + padding: 20px; +} + +h1 { + text-align: center; + color: black; +} + +form { + margin-bottom: 20px; +} + +input { + width: 70%; + padding: 10px; + border: 1px solid #ddd; + border-radius:4px ; +} + + From e7dcb47dd018e7c0bd4e2f0f4b2dd7f38ae8a4a0 Mon Sep 17 00:00:00 2001 From: Pranay Aswani Date: Thu, 6 Nov 2025 12:06:55 +0530 Subject: [PATCH 2/6] new message edited --- index.html | 2 +- style.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index a06e265..b7ea00b 100644 --- a/index.html +++ b/index.html @@ -16,7 +16,7 @@ -

My Tasks

+

My Tasks Lists

diff --git a/style.css b/style.css index 0e13ab8..4e9486c 100644 --- a/style.css +++ b/style.css @@ -21,7 +21,7 @@ h1 { } form { - margin-bottom: 20px; + margin-bottom: 21px; } input { From 4017b18ff44f6631ffb80c934cc49404379add34 Mon Sep 17 00:00:00 2001 From: Pranay Aswani Date: Thu, 6 Nov 2025 12:26:49 +0530 Subject: [PATCH 3/6] new message edited --- utils.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 utils.js diff --git a/utils.js b/utils.js new file mode 100644 index 0000000..982637b --- /dev/null +++ b/utils.js @@ -0,0 +1 @@ +console.log("Hello Pranay Aswani"); From 7a28661ee1373013fa68f220a8b554da989a9564 Mon Sep 17 00:00:00 2001 From: Pranay Aswani Date: Thu, 6 Nov 2025 12:39:35 +0530 Subject: [PATCH 4/6] delete feature implemented --- index.html | 1 + script.js | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/index.html b/index.html index b7ea00b..28720e9 100644 --- a/index.html +++ b/index.html @@ -21,6 +21,7 @@

My Tasks Lists

+
diff --git a/script.js b/script.js index f336ab6..8282fb8 100644 --- a/script.js +++ b/script.js @@ -1,3 +1,7 @@ const handleClick = ()=>{ console.log("Task added"); +} + +const handleDelete = ()=>{ + console.log("Task Deleted"); } \ No newline at end of file From 4563c15f49599fc4787e89b3a1ebc75807daf811 Mon Sep 17 00:00:00 2001 From: Pranay Aswani Date: Thu, 6 Nov 2025 12:41:52 +0530 Subject: [PATCH 5/6] Update Title --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index a06e265..d9f98ca 100644 --- a/index.html +++ b/index.html @@ -16,7 +16,7 @@ -

My Tasks

+

My Personal Task Manager

From 0fe65aa952178a74a606baac2f120e397b26152f Mon Sep 17 00:00:00 2001 From: Pranay Aswani Date: Thu, 6 Nov 2025 13:08:38 +0530 Subject: [PATCH 6/6] New Styles Added --- style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style.css b/style.css index 4e9486c..88dc640 100644 --- a/style.css +++ b/style.css @@ -31,4 +31,8 @@ input { border-radius:4px ; } +button:hover { + background:#0056b3; +} +