Example: |
| |
| <html> |
| <head> |
| <title> My list of jokes </title> |
| </head> |
| <body background ="myimage.jpg" text = “blue”> |
| |
| <h1 align=center> My Registration Page </h1> |
| |
<form name="registration" action="http://expertrating.com/registration.html"> |
|
| First name: <input type=text name="realname" /> <br/><br/> |
| Last name: <input type=text name="surname" /> <br/><br/> |
| Password: <input type=password name="pass"/> <br/><br/> |
| Re-Type Password: <input type=password name="repass"/> <br/><br/> |
| |
| SEX<br/> |
| <input type=radio name="sex" value="M"/> Male<br/> |
| <input type=radio name="sex" value="F"/> Female<br/> |
| |
| <h2 align=center> Additional Information </h2> |
| |
| <input type=checkbox name="maillist"/> Put me on mail list. <br/><br/> |
| |
| <input type=reset /><br/><br/> |
| |
| <input type=submit value="Submit" /> |
| |
| </form> |
| |
|