<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>KitnaTax - Know Your Tax</title>
<style>
body{
font-family: Arial;
margin:0;
background:#f5f7fb;
}
header{
background:#0d6efd;
color:white;
padding:20px;
text-align:center;
}
.hero{
padding:80px 20px;
text-align:center;
background:white;
}
.hero h1{
font-size:40px;
}
.button{
background:#0d6efd;
color:white;
padding:12px 25px;
border-radius:5px;
text-decoration:none;
margin:10px;
display:inline-block;
}
.services{
padding:60px 20px;
text-align:center;
}
.service-box{
width:300px;
background:white;
padding:25px;
margin:15px;
display:inline-block;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}
.calculator{
background:#0d6efd;
color:white;
padding:60px 20px;
text-align:center;
}
.pricing{
padding:60px 20px;
text-align:center;
}
.price-box{
width:250px;
background:white;
padding:20px;
display:inline-block;
margin:10px;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}
footer{
background:#222;
color:white;
text-align:center;
padding:20px;
}
</style>
</head>
<body>
<header>
<h2>KitnaTax</h2>
<p>Know Your Tax</p>
</header>
<section class="hero">
<h1>File Your Income Tax Return Easily</h1>
<p>Calculate your tax and file your ITR online with expert support.</p>
<a class="button" href="#">Calculate My Tax</a>
<a class="button" href="#">File My ITR</a>
</section>
<section class="services">
<h2>Our Services</h2>
<div class="service-box">
<h3>ITR Filing</h3>
<p>Quick and accurate filing of income tax returns.</p>
</div>
<div class="service-box">
<h3>Tax Planning</h3>
<p>Optimize your taxes and maximize deductions.</p>
</div>
<div class="service-box">
<h3>Capital Gain ITR</h3>
<p>Expert tax filing for stock market and property transactions.</p>
</div>
</section>
<section class="calculator">
<h2>Calculate Your Tax in 30 Seconds</h2>
<p>Use our smart tax calculator to estimate your tax instantly.</p>
<a class="button" href="#">Start Calculator</a>
</section>
<section class="pricing">
<h2>Pricing</h2>
<div class="price-box">
<h3>Salaried ITR</h3>
<p>₹499 onwards</p>
</div>
<div class="price-box">
<h3>Capital Gain ITR</h3>
<p>₹1499 onwards</p>
</div>
<div class="price-box">
<h3>Freelancer ITR</h3>
<p>₹1999 onwards</p>
</div>
</section>
<footer>
<p>© 2026 KitnaTax.com</p>
</footer>
</body>
</html>