Simple dropdown choices:
This example allows your visitor to choose from specific choices only.
Reference Note about the code:
Bold Black: the name of the input field.
Choose selected>CHOOSE ONE
Green: this is a one word description that comes back in the email to you (no spaces!)
Blue: this word "selected" tells the form that this is the default answer (recommend you put this at the top of the dropdown list on a line that asks visitor to choose.)
Red: this is the word or phrase contained in the dropdown on the form
Simple dropdown choice:
<SELECT NAME="State" SIZE=1>
<option value=CHOOSE selected>CHOOSE ONE
<option value=FL>Florida
<option value=GA>Georgia
<option value=SC>South Carolina
</SELECT>
Another simple dropdown choice:
<SELECT NAME="Heard" SIZE=1>
<option value=heardabout selected>PLEASE CHOOSE ONE
<option value=Google>Google
<option value=Othersearch>Other Search Engine
<option value=CSBforum>CSB Discussion Forum
<option value=TCHforum>TCH Forum
<option value=Other>Some other way
</SELECT>
Another simple dropdown choice:
Adding " " to the code allows your email response to have spaces in the option code. See Oak Light.
If you do not use "", the option must have no spaces!
<SELECT NAME="123-sFrame" SIZE=1>
<option value=Choose selected>CHOOSE ONE
<option value="Oak Light">Oak - Light
<option value="Oak Dark">Oak - Dark
<option value="Cherry">Cherry
<option value="Black">Black metal
<option value="Silver">Silver metal
<option value="Gold">Gold Leaf
<option value="Wedding crystal">Wedding - Crystal
</SELECT>
Another simple dropdown choice:
COMBINE YOUR ANSWER TO AVOID CALCULATIONS IN YOUR FORM!
<SELECT NAME="123-scost" SIZE=1>
<option value=Choose selected>CHOOSE ONE
<option value=1=$10>1 = $10
<option value=2=$20>2 = $20
<option value=3=$25>3 = $25
<option value=4=$30>4 = $30
<option value=5=$35>5 = $35
</SELECT>
|