From 3d5bbd90720604c185a45a317759404feda036b5 Mon Sep 17 00:00:00 2001 From: maxvell917 Date: Tue, 17 Feb 2026 10:13:17 +0530 Subject: [PATCH 1/4] Update customize.json --- customize.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/customize.json b/customize.json index d374fd8e0..75eda3e11 100644 --- a/customize.json +++ b/customize.json @@ -1,6 +1,6 @@ { - "name": "xyz", + "name": "Dimela❤️", "greetingText": "I really like your name btw!", - "wishText": "Aankhon me teri Ajab si Ajab si aadae hai, Dil ko bna de malang ye teri wo hawayeinn hai", + "wishText": "No matter where this life may go,My love for you will always grow.Forever yours, on this Valentine’s Day.", "imagePath": "img/vector.jpg" } From ad8b73a254f24278afa5271d44e115cec9ffd850 Mon Sep 17 00:00:00 2001 From: maxvell917 Date: Tue, 17 Feb 2026 10:40:59 +0530 Subject: [PATCH 2/4] Create index.html for the Valentine's wish website homepage --- index.html | 154 +++++++---------------------------------------------- 1 file changed, 19 insertions(+), 135 deletions(-) diff --git a/index.html b/index.html index 33c75f9f4..3d3a5d1f9 100644 --- a/index.html +++ b/index.html @@ -1,137 +1,21 @@ - - - - - Happy Valentine :) - - - - - - -
-
-

- Hey - xyz -

-

I really like your name btw!

-
-
-

It's Valentine!!! :D

-
-
-
-

- Happy Valentine's Day!! Yeee! Love and blah blah... -

-

Send

-
-
-
-

That's what I was going to do.

-

But then I stopped.

-

- I realised, I wanted to do something special. -

-

Because,

-

- You are Special - :) -

-

- S - O -

-
-
- -
-

Happy Valentine's Day Gorgeous

-
kuch kuch
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-

Okay, now come back and tell me if you liked it.

-

Or click, if you want to watch it again.

-

:)

-
-
- - - - - - + + + + Valentine's Wish + + + +
+

Happy Valentine's Day!

+
+
+

Wishing you a day filled with love and joy.

+

May your heart be filled with happiness and your life with love.

+
+
+

© 2026 Valentine's Wishes

+
+ + \ No newline at end of file From 82881cec9766c618c446c2a42da35a10cbba49f3 Mon Sep 17 00:00:00 2001 From: maxvell917 Date: Tue, 17 Feb 2026 10:43:15 +0530 Subject: [PATCH 3/4] Create script.js with customization loading function --- script.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 script.js diff --git a/script.js b/script.js new file mode 100644 index 000000000..4cd4e900d --- /dev/null +++ b/script.js @@ -0,0 +1,16 @@ +async function loadCustomization() { + try { + const response = await fetch('customize.json'); + const data = await response.json(); + + document.getElementById('name').textContent = data.name; + document.getElementById('greeting').textContent = data.greetingText; + document.getElementById('wish').textContent = data.wishText; + document.getElementById('image').src = data.imagePath; + + } catch (error) { + console.error('Error loading customization:', error); + } +} + +loadCustomization(); \ No newline at end of file From bb5a587089fbc7a71270e47d11e2cbc90a6f9441 Mon Sep 17 00:00:00 2001 From: maxvell917 Date: Tue, 17 Feb 2026 10:52:29 +0530 Subject: [PATCH 4/4] Updated index.html with mobile responsive design improvements. --- index.html | 75 +++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 66 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index 3d3a5d1f9..437890449 100644 --- a/index.html +++ b/index.html @@ -3,19 +3,76 @@ - Valentine's Wish + Valentine Wish +
-

Happy Valentine's Day!

+

Happy Valentine’s Day!

-
-

Wishing you a day filled with love and joy.

-

May your heart be filled with happiness and your life with love.

-
-
-

© 2026 Valentine's Wishes

-
+
+ Valentine's Day +

Wishing you all the love and happiness on this special day!

+ +
\ No newline at end of file