<button> |
The HTML <button> element represents a clickable button. |
<datalist> |
The HTML <datalist> element contains a set of <option> elements that represent the values available for other controls. |
<fieldset> |
The HTML <fieldset> element is used to group several controls as well as labels (<label> ) within a web form. |
<form> |
The HTML <form> element represents a document section that contains interactive controls to submit information to a web server. |
<input> |
The HTML <input> element is used to create interactive controls for web-based forms in order to accept data from the user. How an <input> works varies considerably depending on the value of its type attribute. |
<label> |
The HTML <label> element represents a caption for an item in a user interface. |
<legend> |
The HTML <legend> element represents a caption for the content of its parent <fieldset> . |
<meter> |
The HTML <meter> element represents either a scalar value within a known range or a fractional value. |
<optgroup> |
The HTML <optgroup> element creates a grouping of options within a <select> element. |
<option> |
The HTML <option> element is used to create a control representing an item within a <select> , an <optgroup> or a <datalist> HTML5 element. |
<output> |
The HTML <output> element represents the result of a calculation or user action. |
<progress> |
The HTML <progress> element represents the completion progress of a task, typically displayed as a progress bar. |
<select> |
The HTML <select> element represents a control that provides a menu of options. |
<textarea> |
The HTML <textarea> element represents a multi-line plain-text editing control. |