Form with action script and textfield : Form TextField « Form « HTML / CSS

HTML / CSS » Form » Form TextField 
Form with action script and textfield


<html>
<body>

<form name="input" action="fake_action.asp" method="get">

Type your first name: 
<input type="text" name="FirstName" value="Mickey" size="20">
<br>Type your last name: 
<input type="text" name="LastName" value="Mouse" size="20">
<br>
<input type="submit" value="Submit">

</form

</body>
</html>


           
       
Related examples in the same category
1.Text Field Example
2.Multi-line Text Field Example
3.Form input field
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.