HTML
Creating a Form.
Place the insertion point two lines below the opening Body tag.
Type <FORM> Press Enter
Type <P>Name:<INPUT TYPE=”TEXT” SIZE=27 NAME=”name”></P>
Type <P>Password:<INPUT TYPE=”PASSWORD” SIZE=25 AME=”Password”></P>
Type <P>Address:<INPUT TYPE=”TEXT” SIZE=25 NAME=”address”></P>
Type <P>City:<INPUT TYPE=”TEXT” SIZE=27 NAME=”city”></P>
Type <P>State:<INPUT TYPE=”TEXT” SIZE=27 NAME=”state”></P>
Type <P>Zip:<INPUT TYPE=”TEXT” SIZE=5 NAME=”zip”></P>
Type </FORM>
File-Save xxxxx.html
Adding Check Boxes and Option Boxes (place after last </P> and before </FORM>
Type <P>Please choose a payment method:</P>
Type <INPUT TYPE=”RADIO” NAME=”payment” VALUE=”credit”>Credit
Type <INPUT TYPE=”RADIO” NAME=”payment” VALUE=”debit”>Debit
Type<INPUT TYPE=”RADIO” NAME=”payment” VALUE=”check”>Check
Type <INPUT TYPE=”CHECKBOX”NAME=”attend” VALUE=”fun”>Fun
Type <INPUT TYPE=”CHECKBOX”NAME=”attend” VALUE=”learn”>Learn
Type <INPUT TYPE=”CHECKBOX”NAME=”attend” VALUE=”meet”>Meet People
File-Save xxxxx.html
Adding List Menus and Scroll Boxes
Type <P>How long will you be staying?</P>
Type <SELECT NAME=”staying”>
Type <OPTION SELECTED VALUE=”weekend”>Weekend
Type <OPTION VALUE=”3”>3 Days
Type <OPTION VALUE=”5”>5 Days
Type <OPTION VALUE=”7”>1 Week
Type </SELECT>
Type <P>How many months ?</P>
Type <SELECT NAME=”months” SIZE=3 MULTIPLE>
Type <OPTION SELECTED VALUE=”april”>April
Type <OPTION VALUE=”may”>May
Type <OPTION VALUE=”june”>June
Type <OPTION VALUE=”july”>July
Type </SELECT>
Adding Command Buttons to a Form
After the last </SELECT> press enter twice.
Type <P><INPUT TYPE=”SUBMIT” VALUE=”Send Order”>
Press enter
Type <INPUT TYPE=”RESET” VALUE=”Reset Form”></P>
Click File-Save xxxxx.html
Sending Information from a form.
Open the Form. Place the insertion point inside the opening Form tag. Before the second
Angle bracket.
Press the Space Bar.
Type METHOD=”POST” ACTION=mailto:orders@holyname.net
4. Click File. Click Save.