HTML drop down or select box for Marital Status Options Database structure for the marital status field The developers use this gender drop down for there HTML forms such as any registrations form, inquiry forms and applications form. Copy following HMTL code in your webpage. <select name="marital_status" id="marital_status"> <option value="">-Select Marital Status-</option> <option value="Single">Single</option> <option value="Married">Married</option> <option value="Widowed">Widowed</option> <option value="Separated">Separated</option> <option value="Divorced">Divorced</option> </select> Example of Marital Status Dropdown -Select Marital Status- Single Married Widowed Separated Divorced Marital Status Options Single Married Widowed Separated Divorced M...
This blog is for web developers, software developers, and other users to use the HTML code in their applications. We are providing the different types of select boxes with there values and database structure. The select box like gender, marital status, payment methods and many more with their meaning. It helps to direct copy and paste the HTML dropdown code and uses in the web application.