Skip to content

Instantly share code, notes, and snippets.

@arnoldc
Created June 23, 2013 12:00
Show Gist options
  • Save arnoldc/5844774 to your computer and use it in GitHub Desktop.
Save arnoldc/5844774 to your computer and use it in GitHub Desktop.
html: fieldset and legend markup
<fieldset>
<legend>Billing Affress</legend>
<label for="billAddress">Address</label><input type="text" id="billAddress" name="billAddress" />
<label for="billCity">City</label><input type="text" id="billCity" name="billCity" />
<label for="billProvince">Province</label><input type="text" id="billProvince" name="billProvince" />
<label for="billPC" >Postal Code</label><input type="text" id="billPC" name="billPC" />
</fieldset>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment