-
Notifications
You must be signed in to change notification settings - Fork 0
/
rules.html
127 lines (127 loc) · 5.29 KB
/
rules.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
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<title>Rules for TaxMate</title>
<link rel="stylesheet" type="text/css" href="taxCalc.css">
<script type="text/javascript" src="taxCalc.js"></script>
<style>
p{
margin: 0px 5%;
}
</style>
</head>
<body class="flexpage">
<header>
<div id="flexdiv">
<img src=".\Logo.png">
<a href=".\page1.html" style="color: black"><h1><u>TaxMate</u></h1></a>
<img src=".\Logo.png">
</div>
Based on your income and exemptions, this site can approximately calculate your taxes and help you decide which regime you should use.
<br><i>"Never take stress if it's taxes!!"</i>
<ul id="navbar">
<li class="navbar_li"><a href=".\page1.html" class="navbar_a" title="Home">Home</a></li>
<li class="navbar_li"><a href=".\about_us.html" class="navbar_a" title="About Us">About Us</a></li>
<li class="navbar_li"><a href=".\contact_us.html" class="navbar_a" title="Contact Us">Contact Us</a></li>
<li class="navbar_li"><a href=".\rules.html" class="navbar_a" title="Rules">Rules</a></li>
</ul>
</header>
<hr>
<main>
<h2 style="color: red; text-align: center">Rules</h2>
<p>
We are using the following accounts which are in accordance with the latest budget as per February 1, 2024.
</p>
<p>
Please check for the latest budget update. In case, the budget is further updated, and you don't see the update reflected here, please <a href="contact_us.html">contact us</a> at any of our handles.
</p>
<br><hr><br>
<table style="margin: auto; text-align: center; width: 70%">
<caption>Appendix 1: Tax Slabs as per Old & New Regime</caption>
<tr>
<th>Income Slab</th>
<th>Old Regime:<br>Age 0-60</th>
<th>Old Regime:<br>Age 60-80</th>
<th>Old Regime:<br>Age 80+</th>
<th>New Regime:<br>All Ages</th>
</tr>
<tr>
<th>₹ 0 - 2,50,000</th>
<td>0%</td>
<td rowspan="2">0%</td>
<td rowspan="3">0%</td>
<td rowspan="2">0%</td>
</tr>
<tr>
<th>₹ 2,50,000 - 3,00,000</th>
<td rowspan="2">5%</td>
</tr>
<tr>
<th>₹ 3,00,000 - 5,00,000</th>
<td>5%</td>
<td rowspan="2">5%</td>
</tr>
<tr>
<th>₹ 5,00,000 - 6,00,000</th>
<td colspan="3" rowspan="3">20%</td>
</tr>
<tr>
<th>₹ 6,00,000 - 9,00,000</th>
<td>10%</td>
</tr>
<tr>
<th>₹ 9,00,000 - 10,00,000</th>
<td rowspan="2">15%</td>
</tr>
<tr>
<th>₹ 10,00,000 - 12,00,000</th>
<td colspan="3" rowspan="3">30%</td>
</tr>
<tr>
<th>₹ 12,00,000 - 15,00,000</th>
<td>20%</td>
</tr>
<tr>
<th>₹ 15,00,000+</th>
<td>30%</td>
</tr>
</table>
<br><hr><br>
<table style="margin: auto; text-align: center; width: 70%;">
<caption>Appendix 2: Limits set to all deductions</caption>
<tr>
<th>Deduction as per Chapter VI-A</td>
<th>Limit</th>
</tr>
<tr>
<th>Section 80C<br>Basic Deductions</th>
<td>₹ 1,50,000</td>
</tr>
<tr>
<th>Section 80TTA<br>Interest from Deposits</th>
<td>minimum of your income from interest and ₹ 10,000</td>
</tr>
<tr>
<th>Section 80D<br>Medical Insurance</th>
<td>₹ 75,000<br>(₹ 25,000 for self, ₹ 50,000 for parents)</td>
</tr>
<tr>
<th>Section 80EEA<br>Interest on Housing Loan</th>
<td>₹ 1,50,000</td>
</tr>
<tr>
<th>Section 80CCD<br>Employee's contribution to NPS</th>
<td>₹ 2,00,000</td>
</tr>
</table>
<br><hr><br>
</main>
<footer>
TaxMate: Income Tax calculator v0.0.2<br>
Created by Siddhartha Chatterjee<br>
Adm. no. U23CS028<br>
DoCSE, B.Tech-I, Div. F, SVNIT Surat<br>
Mini-Project for CS104: Web Programming & Python
</footer>
</body>
</html>