this tutorial shows how to add a form to a page.The form contains two input fields and a submit button.
<html>
<body>
<form name="input" action="html_form_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>
</form>
<p>
If you click the "Submit" button, you will send your input to a new page called html_form_action.asp.
</p>
</body>
</html>
April 26, 2009
0 Form with input fields and a submit button
Posted by raj on 11:05 PM
0 comments:
Post a Comment