EMI Calculator से आप किसी भी लोन की मासिक किस्त (EMI) का आसानी से हिसाब लगा सकते हैं। बस लोन अमाउंट, ब्याज दर और अवधि डालें – और मिनटों में EMI पता करें!
अगर आप लोन लेने का प्लान बना रहे हैं और जानना चाहते हैं कि हर महीने कितनी EMI देनी पड़ेगी, तो हमारा ये EMI Calculator Tool आपके लिए बिलकुल सही है।
इस टूल से आप जान सकते हैं:
- हर महीने की EMI (Equated Monthly Installment)
- ब्याज के अनुसार भुगतान
- और टोटल पेमेंट (अगर आप चाहें तो)
EMI (Equated Monthly Installment) वह निश्चित राशि होती है जो आप हर महीने बैंक को चुकाते हैं, जिसमें मूलधन (Principal) और ब्याज (Interest) दोनों शामिल होते हैं।
🛠 EMI कैसे Calculate करें?
- लोन की राशि (Loan Amount) डालें – जैसे ₹100000
- वार्षिक ब्याज दर (Interest Rate per annum) डालें – जैसे 10%
- अवधि (Tenure) डालें – जैसे 24 महीने
- "Calculate EMI" बटन दबाएं
- नीचे आपकी EMI दिखाई देगी
EMI का कोड यंहा से प्राप्त करे :--
<!DOCTYPE html>
<html>
<head>
<title>EMI Calculator</title>
<style>
body {
font-family: Arial, sans-serif;
background: #f5f5f5;
padding: 20px;
}
.container {
max-width: 400px;
margin: auto;
background: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
h2 {
text-align: center;
}
input {
width: 100%;
padding: 8px;
margin: 8px 0;
}
button {
width: 100%;
padding: 10px;
background-color: #28a745;
color: white;
border: none;
font-size: 16px;
margin-top: 10px;
cursor: pointer;
}
button:hover {
background-color: #218838;
}
.result {
margin-top: 20px;
text-align: center;
font-weight: bold;
font-size: 18px;
}
</style>
</head>
<body>
<div class="container">
<h2>EMI Calculator</h2>
<label>Loan Amount (₹):</label>
<input type="number" id="loanAmount" placeholder="Enter loan amount">
<label>Interest Rate (% per annum):</label>
<input type="number" id="interestRate" placeholder="Enter annual interest rate">
<label>Loan Tenure (in months):</label>
<input type="number" id="loanTenure" placeholder="Enter tenure in months">
<button onclick="calculateEMI()">Calculate EMI</button>
<div class="result" id="result"></div>
</div>
<script>
function calculateEMI() {
var principal = parseFloat(document.getElementById("loanAmount").value);
var annualRate = parseFloat(document.getElementById("interestRate").value);
var months = parseInt(document.getElementById("loanTenure").value);
if (isNaN(principal) || isNaN(annualRate) || isNaN(months)) {
document.getElementById("result").innerText = "Please fill all fields correctly.";
return;
}
var monthlyRate = annualRate / (12 * 100);
var emi = (principal * monthlyRate * Math.pow(1 + monthlyRate, months)) / (Math.pow(1 + monthlyRate, months) - 1);
document.getElementById("result").innerText = "Your EMI is ₹" + emi.toFixed(2);
}
</script>
</body>
</html>
.jpg)
कोई टिप्पणी नहीं:
एक टिप्पणी भेजें