From d372cca39bdc2542866a8e5bdd3408b3f11cfb6e Mon Sep 17 00:00:00 2001
From: Priyanshu Rathi <167284441+Dark-S8uL@users.noreply.github.com>
Date: Thu, 27 Jun 2024 15:46:39 +0530
Subject: [PATCH] Added PPM (Parts Per Million) Calculator (#1394)
---
Calculators/PPM-Calculator/Readme.md | 21 ++++++++
Calculators/PPM-Calculator/index.html | 27 ++++++++++
Calculators/PPM-Calculator/script.js | 15 ++++++
Calculators/PPM-Calculator/styles.css | 75 +++++++++++++++++++++++++++
index.html | 14 +++++
5 files changed, 152 insertions(+)
create mode 100644 Calculators/PPM-Calculator/Readme.md
create mode 100644 Calculators/PPM-Calculator/index.html
create mode 100644 Calculators/PPM-Calculator/script.js
create mode 100644 Calculators/PPM-Calculator/styles.css
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 @@
+
+