<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>表单小结</title>
</head>
<body bgcolor="#FFCCFF">
<center>
<p align="center"><font size="5">申请表</font></p>
<from name="from1" method="post" action="">
姓名:<input type="text"><br>
密码:<input type="password" size="21"><br>
感兴趣的职位:<br>
<input type="radio" name="control1" value="0" checked>Web设计
<input type="radio" name="control1" value="1">Web开发
其他要求:<br>
<textarea name="control3" cols="26" rows="5">包括薪水待遇、工作地点等。</textarea><br>
<input name="control4" type="checkbox" checked>发送确认信息<br>
经验:<br>
<select name="control2">
<option>无经验</option>
<option>3年</option>
</select><br>
<input type="submit" name="submit1" value="提交">
<input type="reset" name="reset1" value="重置">
</from>
</center>
</body>
</html>