diff --git a/examples/Tip_Calculator/README.md b/examples/Tip_Calculator/README.md
new file mode 100644
index 00000000..cb5510c2
--- /dev/null
+++ b/examples/Tip_Calculator/README.md
@@ -0,0 +1,28 @@
+# Tip Calculator Example
+
+This is a simple Tip Calculator web app, created to help beginners practice JavaScript math operations, DOM manipulation, and event handling.
+
+## Features
+
+- Enter the bill amount
+- Select a tip percentage (10%, 20%, 30%) or enter a custom percentage
+- Optionally split the bill among multiple people
+- Displays tip, total, and per-person amount dynamically
+- Basic input validation and feedback
+
+## How to Run
+
+1. Open `index.html` in your browser.
+2. Enter a bill amount and choose a tip percentage.
+3. (Optional) Set the number of people to split the bill.
+4. The calculated values update instantly in the results area.
+
+## Files
+
+- `index.html` – Main HTML structure
+- `style.css` – Styling and transitions
+- `script.js` – App logic and interactivity
+
+---
+
+Feel free to improve the design or add features!
diff --git a/examples/Tip_Calculator/index.html b/examples/Tip_Calculator/index.html
new file mode 100644
index 00000000..4e9f27ee
--- /dev/null
+++ b/examples/Tip_Calculator/index.html
@@ -0,0 +1,37 @@
+
+
+
+