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
<form attributes> ... </form>
<form action=”login.html” method=”post”>
Enter your name:
<input type=”text” />
</form>