Last active
September 2, 2017 17:22
-
-
Save ag14spirit/7210d228903f31fad40e3b39fbc0b6f6 to your computer and use it in GitHub Desktop.
Form employment 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>Employment status</legend> | |
<select class="form-control dropdown" id="employment" name="employment"> | |
<option value="" selected="selected" disabled="disabled">-- select one --</option> | |
<option value="Employed">Employed</option> | |
<option value="Self-employed">Self-employed</option> | |
<option value="Out of work">Out of work</option> | |
<option value="Homemaker">Homemaker</option> | |
<option value="Student">Student</option> | |
<option value="Retired">Retired</option> | |
<option value="Unable to work">Unable to work</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 -- | |
Employed | |
Self-employed | |
Out of work | |
Homemaker | |
Student | |
Retired | |
Unable to work |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Suggested HTML dropdown selection standard list of employment status options for use on websites with proper HTML/XHTML markup styling.