Skip to content

Instantly share code, notes, and snippets.

@bradwright
Created April 23, 2009 14:26
Show Gist options
  • Save bradwright/100514 to your computer and use it in GitHub Desktop.
Save bradwright/100514 to your computer and use it in GitHub Desktop.
<form action="" method="post">
<fieldset>
<legend>Personal details</legend>
<!-- name etc here -->
</fieldset>
<fieldset>
<legend>Date of birth</legend>
<label for="day">Day</label>
<select name="day" id="day"><!-- options here --></select>
<label for="month">Month</label>
<select name="month" id="month"><!-- options here --></select>
<label for="year">Year</label>
<select name="year" id="year"><!-- options here --></select>
</fieldset>
<div><input type="submit"></div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment