Release v1.0.0
Zero JavaScript
14.8 KB Gzipped
GPU Accelerated
Modern, Declarative
HTML & CSS Framework
Eliminate design fatigue. Build gorgeous, responsive, themeable web apps using clean HTML attributes without writing custom CSS classes or loading heavy JavaScript runtimes.
⚡ HTML Starter Boilerplate
Copy and paste this production-ready boilerplate to start building immediately with Dark Mode and dynamic theme variables.
<!DOCTYPE html>
<html lang="en" theme="dark" theme-accent="blue">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My TaxUI App</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/TaxUI/taxui@1.0.0/dist/taxui.min.css">
</head>
<body layout="sticky-footer">
<header sticky="glass" style="padding: 1rem 2rem;">
<div layout="split">
<strong>TaxUI App</strong>
<button variant="primary" size="sm">Action</button>
</div>
</header>
<main style="padding: 2rem;">
<div card="glass" interactive>
<div card-body>
<h3>Hello World</h3>
<p>Built with zero JavaScript runtime overhead.</p>
</div>
</div>
</main>
<footer style="padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); text-align: center;">
<p style="color: var(--color-text-muted);">© 2026 TaxUI Framework</p>
</footer>
</body>
</html>