|
|
|
|
Forms are included on Web Pages to accept Visitor input. A common application is the Shopping Cart. The basic Form Elements are shown below. The <input> Tag provides different types of input specified by the type Attribute. To test these Form Elements, enter information into the Text Boxes and Click on the Checkbox, Menu, and Buttons. To process the information entered into Forms, Scripting is required.
See also: Form Basics
A Form on a Web Page starts with the <form> opening Tag. Tags are then included for each Form Element. The Form is terminated by a </form> closing Tag. The example below shows the Text Box Form Element repeated three times to accept different information from the Visitor.
<form name="frm_Name" action="" >
Form Elements are best aligned in a Table as shown below.