HTML Form Builder
Builds a <form> with inputs from a list of name:type entries and configurable action/method.
HTML form skeleton with action and method
Every project starts with the same block: a form tag, an action, a method, one label per field and a submit button. Fifteen lines you rewrite from memory, and there is always a missing name attribute or an unclosed tag hiding somewhere in there. This generator prints that skeleton already closed, so you can paste it into the editor and get on with the real work.
You set the action, the method and one entry in name:type form. Each entry becomes a label wrapping its input, and the word textarea is special-cased into a real textarea element instead of an input. A submit button labelled Enviar, Portuguese for send, is appended at the end. Leave the method field empty and the output falls back to post, the right verb for anything that writes data.
One caveat worth knowing: the list field is a single-line input, so line breaks cannot be typed into it, and the sample value arrives with its separators as plain text, all run together. In practice you generate one field at a time and stack the labels in your editor. Then add required, id and autocomplete by hand. The generated HTML validates nothing and receives nothing; the URL in action does.
Frequently asked questions
How do I build a form with several fields?
Which input types can I use?
Does the form submit anything by itself?
Related Tools
Img Srcset Builder
Builds an <img> tag with a responsive srcset from URLs and widths, ideal for fluid images.
HTML Toggle Switch Builder
Builds an iOS-style toggle switch with label using <input type=checkbox> and inline CSS.
Iframe Builder
Builds a generic <iframe> with src, width, height and optional sandbox/allow attributes.
Tel Link Builder
Build clickable tel: links from a phone number in the international E.164 format. Great for call buttons on mobile sites, email signatures and contact pages.
HTML Rating Stars Builder
Builds a sequence of filled/empty stars representing a numeric rating from 0 to 5.
Shields.io Badge Builder
Builds a shields.io badge URL from label, message and color, ready to embed in READMEs.