HyperText Markup Language/Tag List/form
Use
editThis lets the user create a form. This element lets the web page owner gather information from the users.
For a brief introduction, see the HyperText Markup Language/Forms section of this book.
Example
edit<form method="post" action="SignIn.php">
<input type="text" name="UserName" size="6">
<input type="password" name="Password" size="6">
</form>
Required attributes
editmethod
editSpecifies how information from a form transfers to a Web Server.
action
editIdentifies the Web Page or CGI that the information from the form is to be sent.
Optional attributes
editclass
editAssociated CSS classes.
id
editA string that will be unique throughout the page.
lang
editThe ISO language code.
onreset
editA declared script that is run before a form's data is erased.
onSubmit
editA declared script that is run before a form is submitted.
style
editInline CSS commands.
title
editAdvisory title.
Standard attributes
editMore info
editA link to a page with more info, then the name of the site the info came from (i.e. W3Schools).