The HTML <form>
element can include any of the following form elements:
<input>
<label>
<select>
<textarea>
<button>
<fieldset>
<legend>
<datalist>
<output>
<option>
<optgroup>
One of the most commonly used form elements is the <input>
element.
The appearance of the <input>
element can vary based on its type attribute.
Example
<label for=”fname”>First name:</label> <input type=”text” id=”fname” name=”fname”> |