html form page radio control

2020-04-14 daily case 36th day

1. Requirements:

 

 

2. Background code:

 

 

<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>

 

Guess you like

Origin www.cnblogs.com/ljs7490/p/12701927.html