We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e443aae commit f14b52dCopy full SHA for f14b52d
1 file changed
task17-personalized-greeting-card/README.md
@@ -0,0 +1,22 @@
1
+# Task 17 – Personalized Greeting Card
2
+
3
+## 🎯 Objective
4
+Ask the user for their name through an input field and display a personalized greeting when they click a button.
5
6
+## 🧠 Concepts Practiced
7
+- HTML `input` and `button`
8
+- JavaScript `addEventListener()`
9
+- DOM manipulation (`textContent`)
10
+- CSS responsive design
11
12
+## ✅ What I Learned
13
+- How to capture input from text fields
14
+- How to update webpage content dynamically based on user input
15
+- How to create responsive layouts for small screens
16
17
+## 🔁 Example Flow
18
+User enters:
19
+- Name: Anita
20
21
+Clicks **Show Greeting** → Displays:
22
+`Hello Anita! Welcome 🎉`
0 commit comments