HTML Fieldset and Legend — a practical guide to HTML fieldset legend with clear examples you can reuse in real projects.
HTML Tutorial Series (38/79). Prefer one article? Read the complete HTML tutorial.
Short description
Especially helpful for radio/checkbox groups and multi-section forms.
Fieldset
<fieldset>
<legend>Shipping method</legend>
<label><input type="radio" name="ship" value="std"> Standard</label>
<label><input type="radio" name="ship" value="exp"> Express</label>
</fieldset>