A zip file named your "Lastname, Firstname" containing:
form.html
Details:
This exercise is designed to make you more familiar with forms and form creation.
Although the intricacies of connecting the form to a usable source, such as a
CGI script or a database, is beyond the scope of this course, you will nonetheless
create a form that sends its data to your email address. You will create a feedback
form that conforms to the following:
For the State, use the following drop down menu code:
State [name=State] [id=State]
For the country, use the following drop down menu code:
Country [name=Country] [id=Country]
Use a set of checkboxes to see if the user uses the following:
input tag with the type attribute set to checkbox
OS [name=OS] [id=OS]
An id cannot repeat on the page. While all of the checkboxes will have name="OS" associated with them, you will need to have unique id's, such as: id="OS1", id="OS2", id="OS3", etc
Be sure to assign the proper values to the value attribute of the input
tag
Windows 98
Windows NT
Windows 2000
Windows XP
Windows (other)
Macintosh
UNIX
Linux
Use a set of radio buttons to determine if the user is providing a comment,
question or criticism
input tag with the type attribute set to radio
CommentType [name=CommentType] [id=CommentType]
Again, an id cannot repeat on the page. While all of the radio buttons will have name="CommentType" associated with them, you will need to have unique id's, such as: id="CommentType1", id="CommentType2", etc
Be sure to assign the proper values to the value attribute of the input
tag
Use a textarea form object to gather the user's text input (their comment,
question or criticism)