E-mail subject form
Moderator: General Moderators
-
ssj4gogita4
- Forum Newbie
- Posts: 11
- Joined: Wed Mar 31, 2004 9:03 pm
- Location: TX
- Contact:
E-mail subject form
Does anyone know how to add a box that has a selection of subjects for an email form? Check out my site at http://www.spongebobmania.com/ and go to "Staff"
suggest a select menu:
Just change the values to be whatever you want them to be. The text that will appear on screen is placed in-between the <option> tags.
You could also learn html here, which would save you a lot of time:
http://www.w3schools.com
and click on the html option on the left hand side.
hth
Code: Select all
<select name="nameOfYourDropDown">
<option value="">Select a subject below</option>
<option value="1">Rod</option>
<option value="2">Jane</option>
<option value="3">Freddy</option>
</select>You could also learn html here, which would save you a lot of time:
http://www.w3schools.com
and click on the html option on the left hand side.
hth