DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
HTML Select List Of Salutations (Mr, Mrs, Dr, Prof, Rev, Etc)
<!-- ## HTML Select List of Titles ## -->
<!-- ## Uploaded by James Cullin ## -->
<!-- ## http://jamescullin.com (james.cullin@humber.ca) ## -->
<select name="title">
<option> - Select Your Title - </option>
<option value="Mr.">Mr.</option>
<option value="Mrs.">Mrs.</option>
<option value="Miss">Miss</option>
<option value="Ms.">Ms.</option>
<option value="Dr.">Dr.</option>
<option value="Prof.">Prof.</option>
<option value="Rev.">Rev.</option>
<option value="Other">Other</option>
</select>





