<form name="name of the form" action="either absolute or relative address" method="get or post"> ......... ......... </form>
Write an html program to develop the a form:
Answer:
<html> <title>About Personal Data</title> <head><center><h3>Personal Information</h3></center></head> <body bgcolor="#D8BFD8"> <form name="persdata" action="./DataSer"> <center> <table bgcolor="#D2B48C" border="1"> <tr> <th>Enter ur name : </th> <td><input type="submit" name="persdata_eurn" value=""></td> </tr> <tr> <th>Enter ur course : </th> <td><input type="text" name="persdata_eurc" value=""></td> </tr> <tr> <td align="center"><input type="button" name="persdata_send" value="Send"></td> <td align="center"><input type="reset" name="persdata_clear" value="Clear"></td> </tr> </table> </center> </form> </body> </html>