A simple tool for working with plain HTML files, without complex templating engines or frameworks. Add basic include functionality to keep your code clean and DRY.
Perfect for beginners or small static websites that need simple include functionality
Simple steps to get started with HtmlForge
Choose where your projects will live on your computer.
HtmlForge generates a folder with basic structure (index.html, assets/, etc.).
Add `<!--- include "file.html" -->` anywhere in your HTML to reuse components.
Use the live server for development, then build static files for deployment.
Simple include syntax that just works
<html>
<head>
<title>My Site</title>
</head>
<body>
<!--- include "components/header.html" -->
<h1>Welcome!</h1>
<!--- include "components/footer.html" -->
</body>
</html><!-- With parameters -->
<a href="{{ link }}">{{ text }}</a>
<!-- Usage -->
<!--- include "components/button.html"
text="Contact"
link="/contact.html" -->Available for Windows with macOS and Linux support planned
Go to the Releases page on GitHub
Download the latest .exe installer
Run the installer and start using HtmlForge right away
Planned features and improvements
macOS and Linux versions in development
Open projects in VS Code and other editors
Dark theme and customization options
Join developers who are using HtmlForge to build cleaner, more maintainable static websites