Example of Submit and Reset Button

Phagu007
Posted by Phagu007 under HTML 5 category on | Points: 40 | Views : 1426
<html>
<head>
<Title>Example of Submit and Reset Button</title>
</head>
<form action="/cgi-bin/hello_get.cgi" method="get">
First name:
<input type="text" name="first_name" />
<br>
Last name:
<input type="text" name="last_name" />
<input type="submit" value="Submit" />
<input type="reset" value="Reset" />
</form>
</html>

Comments or Responses

Login to post response