To define what and input is, it's boiled down to create interactive controls for web based forms in order to accept data from user.
<input>= This element is used to create variety of different form controls.
there is also a different variety of input types, 20 different types of inputs ranging from pickers to checkboxes.
some examples to add different inputs look as:
<input type="text"
<input type="color"
With this the type attribute comes to play, it changes the type dramatically alters inputs behaviour and appearance.
Lastly a place holder can be added to tell what to type into a space to inform the user for example username and password to show where to type it. A placeholder can be quite important for a user.
Comments