The input element defines a control that is going to be added to the form. The specific type of that control is specified with the type attribute:
<form>
...
<input type="text" name="fullname"> <!-- This is an input text box -->
...
</form>
The input element defines a control that is going to be added to the form. The specific type of that control is specified with the type attribute:
<form>
...
<input type="text" name="fullname"> <!-- This is an input text box -->
...
</form>