-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (28 loc) · 990 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SIP Calculator</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="sipCalculator">
<h1>SIP Calculator</h1>
<label for="monthlyInvestment">Monthly Investment:</label>
<input type="number" id="monthlyInvestment" placeholder="Enter amount" required>
<label for="annualRate">Expected Annual Rate of Return (%):</label>
<input type="number" id="annualRate" placeholder="Enter rate" required>
<label for="investmentTenure">Investment Tenure (Years):</label>
<input type="number" id="investmentTenure" placeholder="Enter years" required>
<button onclick="calculateSIP()">Calculate</button>
<div id="result">
<h2>Summary:</h2>
<p id="futureValue">-</p>
<p id="AmountInvested">-</p>
<p id="WealthGain">-</p>
</div>
</div>
<script src="app.js"></script>
</body>
</html>