HTML Input

The HTML <input> tag is used to represent a form input control in HTML document.

See this example:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of HTML Input Tag</title>
</head>
<body>
   <form action="#">  
	First name: <input type="text" name="FirstName"  placeholder="Enter First Name"><br /><br />  
	Last name: <input type="text" name="LastName" placeholder="Enter Last Name"><br />  
   </form>
 </body>
</html>