It is control of html this control provide the facility to the user to enter any input through form and through this input tag. User can communicate with any website .and when we require one line of of user input. Such as names, password etc. so it will be created by input tag.
<html> <body> <form> First name:<input type="text" name="FirstName"><br> Last name:<input type="text" name=LastName"><br> <input type="Submit" value="Submit"> </form> </body> </html>O/P First name: