TaxPal is a responsive landing page for an accounting software product. The page is built with HTML and Tailwind CSS using a dark navy, indigo, and pink visual theme.
This project includes a complete single-page website with a navigation bar, hero section, company logos, features, task highlights, call-to-action section, testimonials, pricing cards, FAQ section, and footer.
The website is designed for a fictional accounting platform called TaxPal. Its main message is:
Accounting made for small businesses and for everyone.
The page uses a modern SaaS-style layout with strong typography, rounded cards, gradients, hover effects, and responsive sections.
- HTML5
- Tailwind CSS
- Inline custom Tailwind theme variables
- External images and SVG assets
- Responsive layout utilities
Tailwind CSS is loaded through the CDN:
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>The navigation bar includes:
- TaxPal logo
- Feature, testimonial, and pricing links
- Sign-in link
- Get started button
The header is sticky, so it remains visible at the top of the page while scrolling.
The hero section contains:
- Main headline
- Highlighted text with SVG underline effects
- Short product description
- Primary call-to-action button
- Watch video button
This section displays six company logos to create brand trust and credibility.
The features section introduces the main product features:
- Payroll
- Claim expenses
- VAT handling
- Reporting
It also includes a large product screenshot.
This section highlights simplified business tasks such as:
- Reporting
- Inventory
- Contacts
Each feature card includes an icon, title, and short description.
A gradient CTA section encourages users to get the business package and try the product.
This section displays customer testimonials in card format with user avatars and job titles.
The pricing section includes three plans:
| Plan | Price | Description |
|---|---|---|
| Starter | $9/month | For self-employed users getting started |
| Small Business | $15/month | For small and medium-sized businesses |
| Enterprise | $39/month | For larger companies |
The Small Business plan is visually highlighted.
The FAQ section contains common questions and answers about TaxPal.
The footer includes:
- TaxPal logo
- Navigation links
- Copyright text
A simple project structure could look like this:
taxpal-landing-page/
├── index.html
└── README.md
If you add local images, CSS, or JavaScript later, you can expand it like this:
taxpal-landing-page/
├── index.html
├── README.md
├── assets/
│ └── images/
├── css/
│ └── style.css
└── js/
└── script.js
- Download or clone the project.
- Open
index.htmlin your browser.
- Open the project folder in Visual Studio Code.
- Install the Live Server extension.
- Right-click
index.html. - Select Open with Live Server.
You can customise the website by editing the HTML file.
The custom theme colours are defined in the <style> block:
@theme {
--color-brand-by-abhishek: #4f46e5;
--color-brand-by-abishek: #0a0f1e;
}Main colours used across the page include:
- Dark navy:
#0a0f1e - Indigo:
#4f46e5 - Pink:
#f472b6 - Slate text colours from Tailwind CSS
Pricing cards are located in the Pricing section. Update the plan names, prices, and feature lists directly in the HTML.
Testimonials are located in the Testimonials section. You can update:
- Quote text
- Customer name
- Job title
- Avatar image URL
The navigation links currently point to internal sections and example paths. For smoother single-page navigation, update links like this:
<a href="#features">Features</a>
<a href="#testimonials">Testimonials</a>
<a href="#pricing">Pricing</a>The current page is fully usable as a static landing page, but these improvements can make it more polished:
- Move inline styles into a separate CSS file.
- Fix spelling mistakes such as
BussinesstoBusiness. - Remove spaces from file paths such as
index .html. - Replace placeholder or joke text with real product copy.
- Add a mobile menu for smaller screens.
- Add form functionality for sign-in or get-started buttons.
- Optimise external images for faster loading.
- Add accessibility labels where needed.
- Add SEO meta tags such as description, keywords, and Open Graph tags.
This page should work in modern browsers such as:
- Google Chrome
- Microsoft Edge
- Firefox
- Safari
Because Tailwind is loaded from a CDN, an internet connection is required for the styling to load correctly.
This project is for learning and portfolio purposes. You can modify and use it for practice, assignments, or personal projects.
Created as a TaxPal landing page project.