A Simple Form Example
below example will illustrate simple example of a form
<html> <head> <title>HTML Forms</title> </head> <body> <form method="post" action="http://www.website.com/submitPage.php"> Name: <input type="text" name="name" size="32" maxlength="80"> <p> Sex: <input type="radio" name="sex" value="M"> Male <input type="radio" name="sex" value="F"> Female <p> Annual Income: <select name="income" size="1"> <option>$25,000</option> <option>$26,000</option> <option>$27,000</option> </select> <p> <input type="submit"> </form> </body> </html>