-
Notifications
You must be signed in to change notification settings - Fork 0
/
about_us.html
54 lines (54 loc) · 2.6 KB
/
about_us.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
<!DOCTYPE html>
<html>
<head>
<title>About 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">About Us</h2>
<p>
Welcome to TaxMate, your reliable companion in navigating the complexities of income tax calculations. Born out of a vision to demystify tax calculations for individuals across India, we are a team dedicated to simplifying your financial planning and tax filing process.
</p>
<p>
Whether you're here to calculate your taxes, or just exploring, we're glad you're here. TaxMate is more than a tool; it's a community dedicated to financial empowerment. Explore our resources, use our calculator, and take a step towards demystifying your taxes today.
</p>
<p>
For any inquiries, suggestions, or feedback, feel free to contact us.
</p>
<p>
Thank you for choosing TaxMate. Here's to a simpler tax season!
</p>
<hr>
</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>