-
Notifications
You must be signed in to change notification settings - Fork 0
/
page4.html
113 lines (113 loc) · 4.8 KB
/
page4.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
<html>
<head>
<title>Results | TaxMate</title>
<link rel="stylesheet" href="taxCalc.css">
<script type="text/javascript" src="taxCalc.js">
</script>
<style>
td{
text-align: center;
}
#tryagain{
margin: 10px 45%;
width: 10%;
background-color: blue;
}
</style>
</head>
<body onload="upgrades()" 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>
<div id="results">
<h2 style="color: red; text-align: center;">Results</h2>
<table style="margin: auto; width: 90%; border: 2px solid black;">
<tr>
<td style="width: 33%">(In ₹)</td>
<th style="width: 33%">Old Regime</th>
<th style="width: 33%">New Regime</th>
</tr>
<tr>
<td colspan="3">---</td>
</tr>
<tr>
<td><b>Total Income</b></td>
<td id="O_totalIncome"></td>
<td id="N_totalIncome"></td>
</tr>
<tr>
<td colspan="3">---</td>
</tr>
<tr>
<td><b>Exempt Allowances</b></td>
<td id="O_exemptAllowances"></td>
<td id="N_exemptAllowances">0</td>
</tr>
<tr>
<td><b>Standard deductions</b></td>
<td id="O_standard"></td>
<td id="N_standard"></td>
</tr>
<tr>
<td><b>Chapter VI A deductions</b></td>
<td id="O_VIA"></td>
<td id="N_VIA">0</td>
</tr>
<tr>
<td colspan="3">---</td>
</tr>
<tr>
<td><b>Taxable Income</b></td>
<td id="O_taxable"></td>
<td id="N_taxable"></td>
</tr>
<tr>
<td colspan="3">---</td>
</tr>
<tr>
<td><b>Calcuated Tax</b></td>
<td id="O_ctax"></td>
<td id="N_ctax"></td>
</tr>
<tr>
<td><b>Health & Education Cess</b></td>
<td id="O_4per"></td>
<td id="N_4per"></td>
</tr>
<tr>
<td colspan="3">---</td>
</tr>
<tr>
<td><b>Total Income Tax</b></td>
<td><b id="O_ftax"></b></td>
<td><b id="N_ftax"></b></td>
</tr>
</table>
</div>
<div style="padding: 10px 5%;"><b>Our Suggestion:</b> Dear <span id="name"></span>, We suggest you to opt for <b><span id="suggestion"></span> Regime</b> as that will benefit you by <b>₹</b><b id="benefit"></b> than if you opt otherwise.</div>
<button id="tryagain" onclick="return1()">Recalculate??</button>
<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>