|
how do i make an e-mailform?
Email
forms are not that difficult to make. Some browsers do not support them though
(AOL's browser for example). This email form requires no cgi, so you can use it
with any Web space provider. Copy and paste the following code and just add your
own information where you see bold text (you can alter the form by adding or
changing questions the way you like them):
<form method="post" enctype="text/plain" action='mailto:your
email address'>
<input type="hidden" name="To" value="your
subject for email">
Put question # 1 here:<br>
<input type="text" name="question:"
size="50" maxlength="100"><br><br>
Put question # 2 here:<br>
<input type="text" name="question:"
size="50" maxlength="100"><br><br>
Put question # 3 here:<br>
<input type="text" name="question:"
size="50" maxlength="100"><br><br>
Put question # 4 here:<br>
<input type="text" name="question:"
size="50" maxlength="100"><br><br>
Put something here that requires a long answer:<br>
<textarea name="Subject of text area" wrap=physical
rows=7cols=41></textarea>
<br><br>A yes no question goes here:<br>
<input type="radio" name="your question2"value="Yes">Yes<BR>
<input type="radio" name="your question2"value="No">No<br><br>
Another question where
you can check more than one answer:<br>
<INPUT
type="checkbox" name="One" value="yes">One
<INPUT type="checkbox" checked name="Two"
value="yes">Two
<INPUT type="checkbox" checked name="Three"
value="yes">Three
<br><br>
Next Question:<br>
<SELECT name="favorite_color" multiple size="1">
<OPTION selected value="Red"> Red
<OPTION value="blue"> Blue
<OPTION value="green"> Green
<OPTION value="purple"> Purple
<OPTION value="yellow"> Yellow
</SELECT><br><br>
<input
type="submit" value="Submit"><img
src="spacer.gif" width=5 height=1 alt="spacer">
<input type="reset" value="Try again"></form>
This is what it would look like:
|