<html>
<head>
<meta charset="UTF-8">
<title>表格table,表单form</title>
</head>
<body>
<!-- -->
<table border="1">
<tr>
<th>品种</th>
<th>单价</th>
<th>数量</th>
</tr>
<tr>
<td>苹果</td>
<td>10</td>
<td>10</td>
</tr>
<tr>
<td>梨子</td>
<td>15</td>
<td>20</td>
</tr>
</table>
<br/><br/>
<form action="demo3.html" method="post">
昵称:<input type="text" name="nickName"/><br/>
密码:<input type="password" name="password"/><br/>
性别:<input type="radio" name="gender" value="male"/>男 <input type="radio" name="gender" value="female"/>女
<br/>
城市:<select name="city">
<option value="1">深圳</option>
<option value="2">上海</option>
<option value="3">苏州</option>
</select>
<br/>
<input type="submit" value="提交"/>
</form>
</body>
</html>