-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact_us.html
55 lines (55 loc) · 2.45 KB
/
contact_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
55
<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
<link rel="stylesheet" type="text/css" href="taxCalc.css">
<script type="text/javascript" src="taxCalc.js"></script>
</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">Contact Us</h2>
<table style="margin: auto; width: 50%;">
<tr>
<td style="width: 30%;">Mail 1:</td>
<td style="width: 70%;"><a href="mailto: [email protected]">[email protected]</a></td>
</tr>
<tr>
<td>Mail 2:</td>
<td><a href="mailto: [email protected]">[email protected]</a></td>
</tr>
<tr>
<td>Phone:</td>
<td>+91 94127 68236</td>
</tr>
<tr>
<td>LinkedIn:</td>
<td><a href="https://www.linkedin.com/in/siddhartha-chatterjee-791b1028b/">Siddhartha Chatterjee</a></td>
</tr>
</table>
<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>