-
-
Save michaelmcshinsky/583b0e26e064ffd0f0883a7aec7efb8c to your computer and use it in GitHub Desktop.
Form education drop down list
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
<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> |
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
-- 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