Capt. Horatio T.P. Webb
HTML FORMS
Parks -- Fall 2013

Version 2 -- Last Updated 9:00 PM 7/17/2017

HTML forms provide the fundamental tools to gather information from users and transmit it to the server for processing. The HTML form objects are:

The HTML elements allow the user to interact with (i.e., enter data or make choices) on the HTML page. The form elements are contained within a "form" tag pair that defines the beginning and end of a group of HTML form elements. The form tag is:

<form name="some form name" action="some URL/path/program_name" method="GET or POST">

...one or more HTML form elements

</form>