HTML Form Element
Form is used to submit data from user computer to server.A Simple Text Box: < input type="text" >
A simple Textbox for Password: < input type="password" >
Text box with inbuilt text < input type="text" value="Tech Altum" >
Text box with character
limitation of 10 < input type="text" maxlength="10" >
Simple dropdown
<select>
<option>--Select City--</option> <option>New Delhi</option>
<option>Kolkata</option>
<option>Mumbai</option>
<option>Chennai</option>
</select>