What is the input element and what's its main attribute (in forms)?

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>