Simple HTML Tool

Simple HTML with Includes

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.

MPL 2.0 License
Windows Only

Why Choose HtmlForge?

Perfect for beginners or small static websites that need simple include functionality

Include Support
Use `<!--- include "nav.html" -->` syntax to reuse components and keep your code DRY
Live Server
Built-in live server with auto-reload for instant preview while you develop
Static Build
Generate fully resolved static HTML files with all includes compiled into final output
Parameters Support
Pass parameters to includes: `<!-- include "button.html" text="Click me" -->`
Easy Setup
No configuration required. Create projects with basic HTML structure automatically
Nested Includes
Components can include other components for maximum flexibility and reusability

How It Works

Simple steps to get started with HtmlForge

1

Select Root Directory

Choose where your projects will live on your computer.

2

Create New Project

HtmlForge generates a folder with basic structure (index.html, assets/, etc.).

3

Use Includes

Add `<!--- include "file.html" -->` anywhere in your HTML to reuse components.

4

Preview & Build

Use the live server for development, then build static files for deployment.

See It In Action

Simple include syntax that just works

index.html
<html>
  <head>
    <title>My Site</title>
  </head>
  <body>
    <!--- include "components/header.html" -->
    <h1>Welcome!</h1>
    <!--- include "components/footer.html" -->
  </body>
</html>
components/button.html
<!-- With parameters -->
<a href="{{ link }}">{{ text }}</a>

<!-- Usage -->
<!--- include "components/button.html" 
      text="Contact" 
      link="/contact.html" -->

Download HtmlForge

Available for Windows with macOS and Linux support planned

Installation
1

Go to the Releases page on GitHub

2

Download the latest .exe installer

3

Run the installer and start using HtmlForge right away

Coming Soon

Planned features and improvements

Cross-Platform Support

macOS and Linux versions in development

Editor Integration

Open projects in VS Code and other editors

Dark Mode

Dark theme and customization options

Ready to Simplify Your HTML?

Join developers who are using HtmlForge to build cleaner, more maintainable static websites