<title> review making a form </title>
<meta http-equiv= "Content-type" content= "Text/html;charset=utf-8" >
<body>
<form name= "name1" method= "get" ><!--General method are selected post-->
<table border= "1" align= "center" rules= "all" bordercolor= "Grey" >
<caption bgcolor= "Black" > form element Example </caption>
<tr>
<TD align= "Right" > User name:</td>
<!--the value of the Name property is its name and should be made at a glance, knowing what it means--
<td><input type= "text" name= "username" ></td>
<TD align= "Right" > Job:</td>
<td>
<select name= "Zhiwei" id= "Zhiwei" >
<option value= "Assistant" > Assistant </option>
<option value= "Development Engineer" > Development Engineer </option>
<option value= "optimization Specialist" > Optimization specialist </option>
<option value= "Customer Service" > Customer service </option>
<option value= "Business Supervisor" > Business Supervisor </option>
</select>
</td>
</tr>
<tr>
<TD align= "Right" > Password:</td>
<!--password input box, when users enter content into the box, they do not display specific content, but instead
<td><input type= "Password" name= "Userpwd" ></td>
<TD align= "rignt" > Sex:</td>
<td>
<input type= "Radio" name= "Sex" value= "male"/> Male
<input type= "Radio" name= "Sex" value= "female"/> Female
</td>
</tr>
<tr>
<TD align= "Right" > Job skills:</td>
<TD colspan= "3" >
<input type= "checkbox" value= "Web Design" > Web Design
<input type= "checkbox" value= "website promotion" > website promotion
<input type= "checkbox" value= "System Development" > System development
<input type= "checkbox" value= "Database Maintenance" > Database Maintenance
<input type= "checkbox" value= "Performance Test" > Performance test
</td>
</tr>
<tr>
<TD align= "Right" > expected to work in the city:</td>
<TD colspan= "3" >
<input type= "checkbox" value= "Beijing" > Beijing
<input type= "checkbox" value= "Shanghai" > Shanghai
<input type= "checkbox" value= "Guangzhou" > Guangzhou
<input type= "checkbox" value= "Shenzhen" > Shenzhen
</td>
</tr>
<tr>
<TD colspan= "4" >
<textarea name= "Gongzuojingyann" value= "..." cols= "rows=" ></textarea>
</td>
</tr>
<tr>
<TD align= "Right" > Upload image:</td>
<td><input type= "File" ></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><input type= "button" value= "normal button" ></td>
<td><input type= "Submit" value= "Submission button" ></td>
<td><input type= "reset" value= "reset button" ></td>
</tr>
</table>
</form>
</body>
:
Forms of Exercise