Textfield tag
Advertisements
Textfield in HTML
Textfield are used for get input value from users. This is achieve by using <input> tag in html.
Example
<html> <head> <form> First Name: <input type="text" name="firstname"/> <br/> Last Name: <input type="text" name="lastname"/> </form> </body> </html>
Result
Google Advertisment