Simple dropdown choice:
<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:
<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>
Reference Note about the code above:
Purple: 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
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
|