Form input field : Form TextField « Form « HTML / CSS

HTML / CSS » Form » Form TextField 
Form input field


<html>
<body>

<form>
First name: 
<input type="text" name="firstname">
<br>
Last name: 
<input type="text" name="lastname">
</form>

</body>
</html>


           
       
Related examples in the same category
1.Text Field Example
2.Multi-line Text Field Example
3.Form with action script and textfield
4.Form to email
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.