From f991d63a83a4f297bf8581ca150403349f8c5334 Mon Sep 17 00:00:00 2001 From: kalash Date: Mon, 4 Apr 2022 09:07:58 +0530 Subject: [PATCH] Adding Loan Calculator --- 98 - Loan Calculator/README.md | 1 + 98 - Loan Calculator/index.html | 36 +++++++++++++++++++++++++ 98 - Loan Calculator/loancalculator.css | 22 +++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 98 - Loan Calculator/README.md create mode 100644 98 - Loan Calculator/index.html create mode 100644 98 - Loan Calculator/loancalculator.css diff --git a/98 - Loan Calculator/README.md b/98 - Loan Calculator/README.md new file mode 100644 index 00000000..aebb44dc --- /dev/null +++ b/98 - Loan Calculator/README.md @@ -0,0 +1 @@ +# loan-calculator diff --git a/98 - Loan Calculator/index.html b/98 - Loan Calculator/index.html new file mode 100644 index 00000000..8e00cfb0 --- /dev/null +++ b/98 - Loan Calculator/index.html @@ -0,0 +1,36 @@ + + + + + + + + + Loan Calculator + + + +
+

Loan Calculator

+

Loan Amount: $

+

Interest Rate: % +

+

Months to Pay:

+

+
+ + + + \ No newline at end of file diff --git a/98 - Loan Calculator/loancalculator.css b/98 - Loan Calculator/loancalculator.css new file mode 100644 index 00000000..86ec97b7 --- /dev/null +++ b/98 - Loan Calculator/loancalculator.css @@ -0,0 +1,22 @@ +#loancal { + padding-top: 15px; + padding-left: 75px; + width: 375px; + height: 295px; + background-color:#000; + color: #fff; +} + +#months, #amount, #interest_rate{ + width: 175px; + height: 20px; + +} + +#interest_rate { + margin-left: 2px; +} + +h1 { + font-size:40px; +} \ No newline at end of file