Header Ads Widget

Income tax calculator

 

Income Tax Calculator

Income Tax Calculator




Tax:

form { display: flex; flex-direction: column; align-items: center; } input[type="text"] { width: 200px; height: 30px; font-size: 16px; padding: 5px; } button[type="button"] { width: 200px; height: 40px; font-size: 16px; background-color: lightblue; color: white; border-radius: 5px; } function calculateTax() { // Read the annual income from the input field const income = document.querySelector("#income").value; // Calculate the tax (example calculation, tax rate can vary depending on your jurisdiction) const tax = income * 0.15; // Display the tax document.querySelector("#result").innerHTML = "Tax: $" + tax; }

Post a Comment

0 Comments