html表格页面radio控件

2020-04-14  每日一例第36天

1.要求:

 

 

2.后台代码:

 

 

<html>
<center>
<head>
邮箱登录
</head>
<body>
<table>
<form>
<tr>
<td>邮箱账户: </td>
<td><input name="txtname" type="text"/></td>
</tr>
<tr>
<td>密码: </td>
<td><input name="txtname" type="password"/></td>
</tr>
<tr>
<td>性别: </td>
<td><input type="radio" name="gender"/>男<input type="radio" name="gender"/>女</td>
</tr>
</form>
</table>
</body>
</center>
</html>

 

posted @ 2020-04-14 22:45  winnerljs  阅读(621)  评论(0编辑  收藏  举报