Forms

form

Defines a form for user input. within the form there can be several input element of different types like textbox, password, checkbox, select, etc. Data entered by usres is passed to a specified URL. Block-level element

Syntax

<form attributes> ... </form>

Example

<form action=”login.html” method=”post”>
   Enter your name:
   <input type=”text” />
</form>

Related tags

CSS Properties

HTML attributes

Search the Soup!