<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<table align="center">
<tr>
<td>
<form action="#" method="post">
<label for="username">用户名:</label><input id="username" type="text" name="username" placeholder="请输入密码!">
<br/>
密码:<input typut="password"name="pwd">
<br/>
性别:<input type="radio" name="gender" value="male">男
<input type="radio" name="gender" value="fmale">女
<br/>
爱好:<input type="checkbox" name="hoddy" value="running">跑步
<input type="checkbox" name="hoddy" value="sing">唱歌
<input type="checkbox" name="hoddy" value="reading">阅读
<br/>
图片:<input type="file" name="file">
<br/>
隐藏域:<input type="hidden" name="mmz" value="123">
<br/>
省份: <select>
<option value=""></option>
<option value="1">贵州</option>
<option value="2">北京</option>
<option value="3">上海</option>
</select>
<br/>
<input type="submit" value="登录"><br/>
<input type="button" value="登录"><br/>
<input type="submit" value="登录"><br/>
<input type="image" src="2.jpg">
</form>
</td>
</tr>
</table>
</body>
</html>