The <form></form> tag is a container for form elements. The form element itself isn’t usually a visible part of the page. It can however be with the help of CSS.
nanadwumor
- HTML <form> tag is used to collect data from users
- The form element itself isn’t usually a visible part of the page
- The form element has a list of other tags like the <input>
RECOMMENDED ARTICLES
Difference Between Absolute and Relative References in HTML
A relative reference does not specify the complete path to a web page. It specifies only the name of the web page. An absolute reference or url contains all the information necessary to locate a resource or target A relative reference does not...
Block And Inline Level Tags in HTML
Block elements start on a new line and end with a carriage return. That's, immediately after ending on a horizontal space, next block element goes to nest line. A block level element is like a container. It can contain other elements. Examples of...
Selecting a browser for HTML5 development
Google's Chrome browser is simple to use and has the most up-to-date HTML5 features making it easier for developers. It also has pretty good developer tools. We recommend you use this browser to learn HTML5 Chrome Firefox Opera Apple Safari...
The HTML<form> tag is used to collect data from users.
The HTML<form> tag contains other tags that provide fields to input text, email, password, checkboxes, radio buttons, submit buttons etc.
Syntax
1 2 3 |
<form> <!--place form elements here--> </form> |
Join Other Subscribers on Our YouTube Channel and Don’t Miss a thing!
Form Elements
The form element itself isn’t usually a visible part of the page. These include:
- <input>
- <output>
- <option>
- <outgroup>
- <label>
- <button>
- <select>
- <fieldset>
- <textarea>
Browser Support
Chrome | Internet Explorer | Firefox | Safari | Opera |
Yes | Yes | Yes | Yes | Yes |
You May Also Like…
Difference Between Absolute and Relative References in HTML
A relative reference does not specify the complete path to a web page. It specifies only the name...
Block And Inline Level Tags in HTML
Block elements start on a new line and end with a carriage return. That's, immediately after...
Selecting a browser for HTML5 development
Google's Chrome browser is simple to use and has the most up-to-date HTML5 features making it...
0 Comments