Week 8 - Session 2 - HTML Forms
blog image source |
Forms can be made up of standard graphical user interface elements:
- text - a simple text box that allows input of a single line of text
- email - a type of text that requires a partially validated email address
- number - a type of text that requires a number
- password - characters typed in are invisible or replaced by symbols such as *
- radio - a radio button
- file - a file select control for uploading a file
- reset - tells the browser to restore the values to their initial values
- submit - tells the browser to take action on the form (typically to send it to a server)
- textarea - allows for multiple rows of data to be shown and entered
- select - a drop-down list that displays a list of items a user can select from
Wikipedia - https://en.wikipedia.org/wiki/Form_(HTML)
Your first HTML form - https://developer.mozilla.org/en-US/docs/Learn/HTML/Forms/Your_first_HTML_form