Diverse Tax Services

File Your Individual Tax Return Here!

About indivual tax

You are on the right page and can FILE NOW if any of the following are true about you:

1) You are a single taxpayer (can have dependents that  can be claimed)

2) You have had a life change such as but not limited to:

a) Married   b) Divorced    c) Opened a small business

3) You have not filed in multiple years 

4) Have received an IRS notice of any kind

Click the file now button above and file with no upfront cost! We provide a   $1,000,000  tax audit defense membership for free on all individual returns handled by Diverse Tax Services! We file your taxes instantly! 

We understand every major decision you make, even some minor ones, weighs on how much you get back on your tax return. Particularly in 2023’s complex tax environment. By asking the right questions, understanding our clients, and utilizing solid tax strategies, we gather the information needed to prepare tax returns and identify and implement valuable tax-saving opportunities. Our experienced tax accountants are here to help you get the most out of your tax return.

Book now for a free evaluation of your business needs. Increase your profit and decrease your taxes. Whether you own a small business or are an individual, we have the skills to prepare your taxes in compliance with all Federal and State tax laws. Preparation of all types of returns including corporate tax filings, multi-state taxes, and individual income tax returns. Contact us today to schedule your appointment with us!

HAve Questions?

jQuery(document).ready(function ($) { // Use event delegation to handle AJAX-loaded or dynamically rendered forms $(document).on('blur', '.zip-lookup input', function () { lookupZip($(this)); }); $(document).on('keydown', '.zip-lookup input', function (e) { if (e.key === 'Enter') { e.preventDefault(); lookupZip($(this)); } }); function lookupZip($zipInput) { var zip = $.trim($zipInput.val()); // Only lookup valid 5-digit US ZIP codes if (!/^\d{5}$/.test(zip)) { return; } // Find the matching City and State fields relative to the form container var $form = $zipInput.closest('form'); var cityField = $form.find('.zip-city input'); var stateField = $form.find('.zip-state select'); // Fallback to global search if elements aren't found within a form wrapper if (cityField.length === 0) cityField = $('.zip-city input'); if (stateField.length === 0) stateField = $('.zip-state select'); $.getJSON('https://api.zippopotam.us/us/' + zip) .done(function (data) { if (data.places && data.places.length > 0) { var place = data.places[0]; var city = place['place name']; var state = place['state abbreviation']; // e.g., "CA" // Populate City cityField.val(city).trigger('input').trigger('change'); // Populate State and trigger change for both standard and Select2 dropdowns stateField.val(state).trigger('change'); if (stateField.hasClass('select2-hidden-accessible')) { stateField.trigger('change.select2'); } } else { clearFields(cityField, stateField); } }) .fail(function () { console.log('ZIP code lookup failed.'); clearFields(cityField, stateField); }); } function clearFields(cityField, stateField) { cityField.val('').trigger('input').trigger('change'); stateField.val('').trigger('change'); if (stateField.hasClass('select2-hidden-accessible')) { stateField.trigger('change.select2'); } } });