Created
April 23, 2009 14:26
-
-
Save bradwright/100514 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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