- <form> tag encloses an XHTML form
- Attributes define relationship between the form and the process that will handle
the user-defined data
- Attributes:
- method
- HTTP request to be used (GET or POST)
- action
- Script to process the data
<form method = "post" action = "/cgi-bin/script.cgi">
</form>