diff --git a/Calculators/Momentum-With-Time-Calculator/README.md b/Calculators/Momentum-With-Time-Calculator/README.md
new file mode 100644
index 000000000..7bab8d6c0
--- /dev/null
+++ b/Calculators/Momentum-With-Time-Calculator/README.md
@@ -0,0 +1,35 @@
+#
Momentum With Time Calculator
+
+## Description :-
+
+The Momentum With Time Calculator is a web application designed to calculate the momentum of an object or a body with its given force and time, dynamically on the webpage.
+
+## Tech Stacks :-
+
+- HTML
+- CSS
+- JavaScript
+
+## Features :-
+
+- Calculate the momentum of a body based on the user input.
+- Applicable to all types of units.
+- User-friendly interface with modern styling and animations.
+
+## How It Works :-
+
+1. **Input Force**
+ - Enter the force of the body.
+
+2. **Input Time**
+ - Enter the Time of the body.
+
+3. **Calculate Momentum**
+ - Click the "Calculate" button to get the momentum.
+
+4. **Result**
+ - The application will display the result of the calculation, i.e., the final momentum of the body.
+
+## Screenshots :-
+
+![Screenshot 2024-07-31 120129](https://github.com/user-attachments/assets/0f578db5-c877-487b-92c1-51a088ce3e02)
diff --git a/Calculators/Momentum-With-Time-Calculator/index.html b/Calculators/Momentum-With-Time-Calculator/index.html
new file mode 100644
index 000000000..8a03ef7a7
--- /dev/null
+++ b/Calculators/Momentum-With-Time-Calculator/index.html
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+ Momentum With Time Calculator
+
+
+
+
+
Momentum With Time Calculator
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Calculators/Momentum-With-Time-Calculator/script.js b/Calculators/Momentum-With-Time-Calculator/script.js
new file mode 100644
index 000000000..4016cd3dc
--- /dev/null
+++ b/Calculators/Momentum-With-Time-Calculator/script.js
@@ -0,0 +1,24 @@
+function calculateM() {
+ // Get the input values
+ var force = parseFloat(document.getElementById("force").value);
+ var time = parseFloat(document.getElementById("time").value);
+
+ // Validate input
+ if (isNaN(force) || isNaN(time)) {
+ alert("Please enter valid numbers.");
+ return;
+ }
+
+ // Calculate momentum
+ var mom = (force * time);
+
+ // Display the result
+ var resultElement = document.getElementById("result");
+ resultElement.innerHTML = `
+