HTML

Creating a Form.


  1. Place the insertion point two lines below the opening Body tag.

  2. Type <FORM> Press Enter

  3. Type <P>Name:<INPUT TYPE=”TEXT” SIZE=27 NAME=”name”></P>

  4. Type <P>Password:<INPUT TYPE=”PASSWORD” SIZE=25 AME=”Password”></P>

  5. Type <P>Address:<INPUT TYPE=”TEXT” SIZE=25 NAME=”address”></P>

  6. Type <P>City:<INPUT TYPE=”TEXT” SIZE=27 NAME=”city”></P>

  7. Type <P>State:<INPUT TYPE=”TEXT” SIZE=27 NAME=”state”></P>

  8. Type <P>Zip:<INPUT TYPE=”TEXT” SIZE=5 NAME=”zip”></P>

  9. Type </FORM>


File-Save xxxxx.html


Adding Check Boxes and Option Boxes (place after last </P> and before </FORM>


  1. Type <P>Please choose a payment method:</P>

  2. Type <INPUT TYPE=”RADIO” NAME=”payment” VALUE=”credit”>Credit

  3. Type <INPUT TYPE=”RADIO” NAME=”payment” VALUE=”debit”>Debit

  4. Type<INPUT TYPE=”RADIO” NAME=”payment” VALUE=”check”>Check


  1. Type <INPUT TYPE=”CHECKBOX”NAME=”attend” VALUE=”fun”>Fun

  2. Type <INPUT TYPE=”CHECKBOX”NAME=”attend” VALUE=”learn”>Learn

  3. Type <INPUT TYPE=”CHECKBOX”NAME=”attend” VALUE=”meet”>Meet People


File-Save xxxxx.html


Adding List Menus and Scroll Boxes


  1. Type <P>How long will you be staying?</P>

  2. Type <SELECT NAME=”staying”>

  3. Type <OPTION SELECTED VALUE=”weekend”>Weekend

  4. Type <OPTION VALUE=”3”>3 Days

  5. Type <OPTION VALUE=”5”>5 Days

  6. Type <OPTION VALUE=”7”>1 Week

  7. Type </SELECT>


  1. Type <P>How many months ?</P>

  2. Type <SELECT NAME=”months” SIZE=3 MULTIPLE>

  3. Type <OPTION SELECTED VALUE=”april”>April

  4. Type <OPTION VALUE=”may”>May

  5. Type <OPTION VALUE=”june”>June

  6. Type <OPTION VALUE=”july”>July

  7. Type </SELECT>


Adding Command Buttons to a Form


  1. After the last </SELECT> press enter twice.

  2. Type <P><INPUT TYPE=”SUBMIT” VALUE=”Send Order”>

  3. Press enter

  4. Type <INPUT TYPE=”RESET” VALUE=”Reset Form”></P>


Click File-Save xxxxx.html



Sending Information from a form.


  1. Open the Form. Place the insertion point inside the opening Form tag. Before the second

Angle bracket.

  1. Press the Space Bar.

  2. Type METHOD=”POST” ACTION=mailto:orders@holyname.net

4. Click File. Click Save.