-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathincome.html
More file actions
65 lines (56 loc) · 1.44 KB
/
income.html
File metadata and controls
65 lines (56 loc) · 1.44 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/income.css">
</head>
<body>
<form action="#" onsubmit=" return handlSubmit()">
<input type="text" id="salary" placeholder="Enter Your Salary"><br><br>
<span id="error"></span>
<input type="submit">
<br><br>
</form>
<table border="8">
<tr>
<td>Income Tax Slab</td>
<td>Income Tax Rate</td>
<td>Actua Tax</td>
</tr>
<tr>
<td>Up to 3 Lakh</td>
<td>Nill</td>
<td id="slab-1"></td>
</tr>
<tr>
<td>3 Lakh to 6 Lakh</td>
<td>5%</td>
<td id="slab-2"></td>
</tr>
<tr>
<td>6 Lakh to 9 Lakh</td>
<td>10%</td>
<td id="slab-3"></td>
</tr>
<tr>
<td>3 Lakh to 12 Lakh</td>
<td>15%</td>
<td id="slab-4"></td>
</tr>
<tr>
<td>12 Lakh to 15 Lakh</td>
<td>20%</td>
<td id="slab-5"></td>
</tr>
<tr>
<td>Above 15 Lakh</td>
<td>30%</td>
<td id="slab-6"></td>
</tr>
</table>
<p>Total Tax: <span id="total"></span></p>
<script src="js/income.js"></script>
</body>
</html>