标签:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>用户登录页面</title>
</head>
<body style="background-color:palevioletred ">
<form style="width: 300px">
<fieldset>
<legend>用户登录</legend>
<table>
<tr>
<td >用户名</td>
<td><input type="text"></td>
</tr>
<tr>
<td >密 码</td>
<td><input type="password"></td>
</tr>
<tr>
<td>性别</td>
<td>
<input type="radio" id="enen" name="xingbie" value="1" checked="true">男
<input type="radio" id="buenen" name="xingbie" value="2">女
</td>
</tr>
<tr>
<td>兴趣爱好</td>
<td>
<input type="checkbox">音乐
<input type="checkbox">舞蹈
<input type="checkbox">购物
<td>
</tr>
<tr>
<td></td>
<td><input type="button" value="确定"><input type="button" value="取消"></td>
</tr> </table> </fieldset> </form></body></html>
标签:
原文地址:http://www.cnblogs.com/pjmcx/p/4890664.html