-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathinterest calculator.html
35 lines (28 loc) · 1.21 KB
/
interest calculator.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
<html>
<head>
<title> Interest Calculator </title>
<link rel="stylesheet" type="text/css" href="assets/interest calculator.css">
</head>
<body>
<div class="savelock-box">
<h1>Interest Calculator</h1>
<p class="sub-head">Find out how much you'll have after investment</p><br><br>
<form>
<p class="texts">Amount to lock</p>
<input type="text" name="amount" placeholder="2500">
<p class="texts">Duration</p>
<input list="date" placeholder="Select duration of lock">
<datalist id="date">
<option value="10-30 days"></option>
<option value="31-60 days"></option>
<option value="61-90 days"></option>
<option value="91 days to 2 years"></option>
<option value="Over 2 years"></option>
</datalist>
<p class="texts">Payback date</p>
<input type="date" name="date" placeholder="Select date">
<input type="submit" name="submit" value="CALCULATE INTEREST">
</form>
</div>
</body>
</html>