Create a form using FORM, TEXTAREA, SUBMIT, and RESET tags.
- Change to your public_html directory
cd ~/public_html
- Create a new HTML document called form.html from
scratch using your favorite editor or xemacs.
xemacs form.html &
- In the file form.html, create a form, set the METHOD to POST
and ACTION to send email to you.
<FORM METHOD=POST ACTION="mailto:user@valinux.com">
where
user
is your email name.
- Create a TEXTAREA input field.
<TEXTAREA NAME="feedback" ROWS=5 COLS=50>
Change this text to what you want to ask your viewers.
</TEXTAREA><BR>
- Create submit and reset buttons.
<INPUT TYPE=SUBMIT VALUE="Mail my feedback!">
<INPUT TYPE=RESET>
</FORM>
- Save your html file.
- Examine your page in your browser.
- In the location window of your browser, type
vaweb.valinux.com/~user/form.html
to view your page, where "user" is the name you use to login
to your system.
Or
- From the File menu in Navigator, choose the "Open Page"
from the File menu. The Open Page dialog box appears
- Click the "Choose File" button. The file browser appears.
- Navigate to your public_html directory. The name of your
html file will now appear in the Files box.
- Click on the file and
then hit the return key or click the "OK" button at the button
left of the dialog box. Then click "Open in Navigator" in the
Open Page dialog box. You should always check your
work in your browser.
- Enter text into your form, don't worry about what you type,
you are going to erase it.
- Check that the RESET button, clears the form.
If it doesn't, fix your code and try again.
- Enter text into your form.
- Check that the SUBMIT button sends your text to you.