From db705a471919a55325bf3cd1d434c6e761ede293 Mon Sep 17 00:00:00 2001 From: kiran Date: Fri, 13 Jun 2025 12:21:09 +0530 Subject: [PATCH] feat: Add Bootstrap greeting card page - Created index.html with Bootstrap card structure - Added style.css for custom hover effects --- index.html | 20 ++++++++++++++++++++ style.css | 12 ++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 index.html create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..5b66e61 --- /dev/null +++ b/index.html @@ -0,0 +1,20 @@ + + + + + + Greeting Card + + + + +
+
+
+
Hello!
+

Welcome to this simple greeting card.

+
+
+
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..44a273e --- /dev/null +++ b/style.css @@ -0,0 +1,12 @@ +/* Custom styles for the greeting card */ +body { + background-color: #f8f9fa; +} + +.card { + transition: transform 0.3s ease; +} + +.card:hover { + transform: translateY(-5px); +}