Forms

Section 1 - Introduction
Section 2 - Basics
Section 3 - Next Level
Section 4 - Advanced
      Fancy Lists
      Forms
         How forms are sent
         Input field
         Buttons
         Input types
         Fieldset
         For more help...
         You try it
      Advanced Tables
      Frames
      Style Sheets
      Image Maps
Section 5 - Publishing
Section 6 - Extras
Appendices
You try it!
Idea: Incorporate forms into a document.

Here's an example: I've modified a forma I made a while ago for use on this page. Please use one appropriate to you.

<html> <head>
<title> My Form </title>
</head>
<body bgcolor="#ccccff" text="#006666" link="#0033ff" vlink="#00cccc">
<form action="mailto:dyingember@hotmail.com" method=post>
Your name is: <input type="text" size="30" name="Mail from: "> <br>
Your e-mail is: <input type="text" size="50" name="E-mail address: "> <br>
Something cool about you: <input type="text" size="50" name="And this person is notable because: ">
<br> <br>
<fieldset>
<legend> How do you know Miss Lowe? </legend>
<input type="checkbox" name="I am a student. "> I am a student <br>
<input type="checkbox" name="I am a parent. "> I am a parent of a student <br>
<input type="checkbox" name="I am a friend. "> I am a friend <br>
<input type="checkbox" name="Other "> Other (please specify) <br>
<input type="text" name="Here is how: " size="15">
</fieldset>
<br> <br>
<textarea name="Here was the message: " rows=7 cols=60> Your message:
</textarea>
<input type=hidden name="redirect" value="http://www.geocities.com/sciencepageoffun/program/D26.html"> <br>
<input type="submit" value="Mail it!">
<input type="reset" value="Erase it!"> <br>
</form>
</body>
</html>
You now should work on your own webpage. Add a form onto a page where appropriate.
Back Home Forward