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); +}