Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save michaelmcshinsky/583b0e26e064ffd0f0883a7aec7efb8c to your computer and use it in GitHub Desktop.
Save michaelmcshinsky/583b0e26e064ffd0f0883a7aec7efb8c to your computer and use it in GitHub Desktop.
Form education drop down list
<fieldset>
<legend>Education</legend>
<select class="form-control dropdown" id="education" name="education">
<option value="" selected="selected" disabled="disabled">-- select one --</option>
<option value="No formal education">No formal education</option>
<option value="Primary education">Primary education</option>
<option value="Secondary education">Secondary education or high school</option>
<option value="GED">GED</option>
<option value="Vocational qualification">Vocational qualification</option>
<option value="Bachelor's degree">Bachelor's degree</option>
<option value="Master's degree">Master's degree</option>
<option value="Doctorate or higher">Doctorate or higher</option>
</select>
</fieldset>
-- Select one --
No formal education
Primary education
Secondary education or high school
GED
Vocational qualification
Bachelor's degree
Master's degree
Doctorate or higher
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment