Forge Guide
Forge is a free visual editor for real HTML and CSS. It runs entirely in your browser: nothing is uploaded, there is no account, and what you export is ordinary code you own.
These guides cover how the editor actually works - not just which buttons exist, but what Forge does to your markup and stylesheets underneath, so you can predict the output instead of fighting it.
What makes Forge different
Most visual builders generate markup from a form. You pick options and they emit HTML you did not write and cannot fully control. Forge works the other way round: it loads your document into a sandboxed frame, reads the real CSS cascade out of the browser, and writes your changes back into real stylesheet rules.
That difference shows up in three places.
- Imported sites stay themselves. Your class names, your structure and your stylesheets survive. Forge adds a generated class only to elements you actually restyle.
- Edits go where they belong. When you change a colour, Forge works out which rule
currently wins and writes the smallest change that beats it, rather than piling on inline styles or
!important. - Export is clean. No editor attributes, no runtime script, no lock-in. The folder you download is a static site you can host anywhere.
Requirements
Any current desktop browser. Forge is a client-side application: there is no server component, no sign-up and no upload step. Because everything runs locally, project size is limited only by your own machine.
Your work stays local. Projects live in your browser session until
you export them. Save a .forge.json project file regularly if you want to come back to
something later.