Making Simple Forms
Here is how you can make a one word answer form:
<INPUT TYPE="input" NAME="firstname"> First Name<p>
<INPUT TYPE="input" NAME="lastname"> Last Name<p>
<INPUT TYPE="input" NAME="from"> Your Email<p>
<INPUT TYPE="input" NAME="subject"> Subject<p>
The result is:
First Name
Last Name
Your Email
Subject
You can make a large box for Comments
<textarea rows=10 cols=30 name="suggestions"></textarea>
The result is:
Making Checkboxes
If you like to ask a question that people can choose multiple answers you can us the check boxes
For example:
Favorite Sports
<input type="checkbox" name="sports" value="soccer"> Soccer<p>
<input type="checkbox" name="sports" value="basketball"> Basketball<p>
<input type="checkbox" name="sports" value="volleyball"> Volleyball<p>
<input type="checkbox" name="sports" value="golf"> Golf<p>
<input type="checkbox" name="sports" value="tennis"> Tennis<p>
The result is:
Favorite Sports
Soccer
Basketball
Volleyball
Golf
Tennis
Radio Buttons
If your asking a question with just one answer:
What is your Favorite color
<input type="radio" name="color" value="red"> Red
<input type="radio" name="color" value="green"> Green
<input type="radio" name="color" value="blue"> Blue
<input type="radio" name="color" value="pink"> Pink
The result is:
What is your Favorite color
RedGreen
Blue
Pink
Pull Down List
Making a pull down list of favorite sports with soccer as selected defalt:
What are some of the sports you played
<select name="Sports">
<option selected> Soccer</option>
<option> Basketball</option>
<option> Volleyball</option>
<option> Golf</option>
<option> Tennis</option>
</select>
