Form design templates
Last update on: 07-16-2008Get an idea of some types of forms with different ways that you can present your form to your visitor. these are just a simple example just to give you an idea, but you can add too many things that will make your form very nice by adding CSS for example.
Structuring Your Forms with tables :
Structuring Your Forms with <fieldset> and <legend> Elements :
Large forms can be confusing for users, so it’s good practice to group together related form controls. The <fieldset> and <legend> elements do exactly this—help you group controls.- The <fieldset> element creates a border around the group of form controls to show that they are related.
- The <legend> element allows you to specify a caption for the <fieldset> element, which acts as a title for the group of form controls. When used, the <legend> element should always be the first child of the <fieldset> element.
Note that if you use a table to format your form, the <table> element must appear inside the <fieldset> element. If a <fieldset> resides within a table that is used to format the page, then the entire fieldset must reside within the same cell.
Designing Forms's lessons:
Understanding FormsForm Controls
Form Design Templates

