diff --git a/Calculators/Euclidean-Algorithm-Calculator/README.md b/Calculators/Euclidean-Algorithm-Calculator/README.md
new file mode 100644
index 000000000..4388d5122
--- /dev/null
+++ b/Calculators/Euclidean-Algorithm-Calculator/README.md
@@ -0,0 +1,19 @@
+# Euclidean Algorithm Calculator
+
+### Functionality :-
+This calculator is a simple tool that to compute the Greatest Common Divisor (GCD) and the Least Common Multiple (LCM) of two integers entered by the user.
+
+
+### Built Using :-
+
+- HTML
+- CSS
+- JavaScript
+
+
+### Screenshot :-
+Sample Output 1 :-
+![image](https://github.com/Rakesh9100/CalcDiverse/assets/163159351/ce50851a-29df-48b8-8021-dd818fb4b39c)
+
+Sample Output 2 :-
+![image](https://github.com/Rakesh9100/CalcDiverse/assets/163159351/baeef276-de95-4e75-b867-dec63d6b0ea5)
\ No newline at end of file
diff --git a/Calculators/Euclidean-Algorithm-Calculator/index.html b/Calculators/Euclidean-Algorithm-Calculator/index.html
new file mode 100644
index 000000000..9a26682ba
--- /dev/null
+++ b/Calculators/Euclidean-Algorithm-Calculator/index.html
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+ Euclidean Algorithm Calculator
+
+
+
+
+
Euclidean Algorithm
+
+ The Euclidean algorithm efficiently computes the greatest common divisor (GCD) of two integers,
+ which is the largest number that divides both without a remainder. Additionally, you can find the
+ least common multiple (LCM) using the GCD with the formula: LCM(A, B) = (A * B) / GCD(A, B).
+