表单示例

白昼怎懂夜的黑 提交于 2020-01-16 15:04:27

<table height="600" width="700" cellpadding="0" cellspacing="0" bgcolor="#006666" border="0" align="center">
<tr height="50">
<td width="200">邮箱:</td>
<td width="500"><input type="text"/></td>
</tr>

<tr height="50">
<td></td>
<td><font size="-2" color="#999999">需要通过邮箱激活账户,不支持sohu邮箱</font></td>
</tr>

<tr height="50">
<td>登录用户名:</td>
<td><input type="text" /></td>
</tr>

<tr height="50">
<td></td>
<td><font size="-2" color="#999999">仅在登录时使用,不少于4个字符</font></td>
</tr>

<tr height="50">
<td>显示名称:</td>
<td><input type="text" placeholder="即昵称,字符数不少于2个字" /></td>
</tr>
<tr height="50">
<td></td>
<td><font size="-2" color="#999999">即昵称,字符数不少于2个字</font></td>
</tr>

<tr height="50">
<td>密码:</td>
<td><input type="password" value="1111111"/></td>
</tr>


<tr height="50">
<td>确认密码:</td>
<td><input type="password" value="11111111"/></td>
</tr>

<tr height="50">
<td></td>
<td><font size="-2" color="#999999">至少8位数,必须包含字母、汉字等</font></td>
</tr>

<tr height="50">
<td>性别:</td>
<td><input type="radio" name="sexy" />男
<input type="radio" name="sexy" />女</td>
</tr>

<tr height="50">
<td>喜好:</td>
<td><input type="checkbox"/>旅游
<input type="checkbox" /> 看电影
<input type="checkbox" /> 看书
<input type="checkbox" />听音乐
</td>
</tr>

<tr>
<td></td>
<td><input type="submit" value="提交" /> <input type="reset" /></td>
</tr>

</table>

<body>

</body>
</form>
</html>

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!