diff --git a/Calculators/PPM-Calculator/Readme.md b/Calculators/PPM-Calculator/Readme.md
new file mode 100644
index 000000000..0b43a0a6f
--- /dev/null
+++ b/Calculators/PPM-Calculator/Readme.md
@@ -0,0 +1,21 @@
+# PPM Calculator
+A simple web-based PPM (Parts Per Million) calculator. This tool allows users to calculate the concentration of a solute in a solution in parts per million (PPM).
+
+## Project Structure
+
+- `index.html`: The main HTML file containing the structure of the webpage.
+- `styles.css`: The CSS file for styling the webpage.
+- `script.js`: The JavaScript file containing the functionality for the calculator.
+- `README.md`: This file, containing an overview of the project.
+
+## How to Use
+
+1. Open the `index.html` file in your web browser.
+2. Enter the amount of solute in milligrams (mg) in the "Solute" field.
+3. Enter the volume of the solution in liters (L) in the "Solution" field.
+4. Click the "Calculate PPM" button.
+5. The result will be displayed below the form, showing the concentration in parts per million (PPM).
+
+## Example
+
+If you enter 10 mg of solute and 2 liters of solution, the calculator will display:
diff --git a/Calculators/PPM-Calculator/index.html b/Calculators/PPM-Calculator/index.html
new file mode 100644
index 000000000..59cf72f19
--- /dev/null
+++ b/Calculators/PPM-Calculator/index.html
@@ -0,0 +1,27 @@
+
+