



|
Description
show's the function of the title tag and body tag. Source Code <HTML> <HEAD> <TITLE>A Web page with a form using text fields</TITLE> </HEAD> <BODY> <CENTER><FONT COLOR = �blue�><H1> A form using text fields </H1></FONT></CENTER> <FORM NAME = �myForm� ACTION = mailto:[email protected] METHOD = �post�> <FONT COLOR = �red�>Enter your name:</FONT><BR> First Name:<INPUT TYPE = �text� VALUE = Lanz NAME = �firstName� SIZE = 10 MAXLENGTH = 15><BR> Last Name:<INPUT TYPE = �text� VALUE = Salcedo NAME = �lastName� SIZE = 10 MAXLENGTH = 15><BR> <FONT COLOR = �red�>Enter your address:</FONT><BR> Address: <INPUT TYPE = �text� VALUE = �number and street go here� NAME = �address� SIZE = 22 MAXLENGTH = 30><BR> City:<INPUT TYPE = �text� NAME = �city� SIZE = 10 MAXLENGTH = 15><BR> State:<INPUT TYPE = �text� NAME = �state� SIZE = 10 MAXLENGTH = 15> Zip code:<INPUT TYPE = �text� NAME = �zipCode� SIZE = 5 MAXLENGTH = 10><BR> Country:<INPUT TYPE = �text� NAME = �country� SIZE = 10 MAXLENGTH = 15><BR> <FONT COLOR = �green�>Thank you. Come again!</FONT><BR> <INPUT TYPE = �SUBMIT� NAME = �submitButton�> <INPUT TYPE = �RESET� NAME = �resetButton�> </BODY> </HTML> output A form using text fields |
  