<html lang="en">
<head>
<title>HTML Input Type Text</title>
</head>
<body>
<h2>HTML Input Type Text</h2>
<form method="post" action="action.php">
<label for="Name">Name:</label>
<input type="text" name="name" id="name">
<input type="submit" name="submit" value="Submit">
</form>
</body>
</html>