From 9ecb37361b13815c6ec88ca286ffa253a46792a8 Mon Sep 17 00:00:00 2001 From: SaiTejaswaniBikkasani Date: Sun, 7 Jul 2024 11:34:00 +0530 Subject: [PATCH] Enhanced the visual design of the thankyou.html page to create a more engaging user experience following feedback submission. Improve Visual Appeal of thankyou.html Page to Enhance User Experience Post-Feedback Submission --- thankyou.css | 29 +++++++++++++++++++++++++++++ thankyou.html | 5 ++++- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 thankyou.css diff --git a/thankyou.css b/thankyou.css new file mode 100644 index 00000000..b3e05128 --- /dev/null +++ b/thankyou.css @@ -0,0 +1,29 @@ +body { + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + margin: 0; + background: linear-gradient(to right, #8e2de2, #4a00e0); + font-family: 'Roboto', sans-serif; +} + +.container { + text-align: center; + padding: 20px; + background-color: #fff; + border-radius: 10px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + max-width: 400px; + width: 90%; +} + +.container:hover { + transform: scale(1.05); + transition: transform 0.3s ease; +} + +h2 { + color: #333; + font-family: Arial, sans-serif; +} diff --git a/thankyou.html b/thankyou.html index cae0f45f..876630f3 100644 --- a/thankyou.html +++ b/thankyou.html @@ -4,8 +4,11 @@ Thankyou + -

Thankyou for the valuable feedback!

+
+

Thank you for the valuable feedback! 👍

+
\ No newline at end of file