HTML⽤表单table写的⼀个⽤户信息注册代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<table align="center" width="400px"  border="1px">
<caption>新⽤户信息注册</caption>
<form name="表单的名称" enctype="multipart/form-data" action="路径" method="提交⽅式">
<tr height="40px">
<td width="100px">html网页设计 table
⽤户名:
</td>
<td><input type="text"value="" placeholder="请输⼊账号:"></td>
</tr>
<tr height="40px">
<td>密码:</td>
<td><input type="password"value="" placeholder="请输⼊密码:"></td>
</tr>
<tr height="40px">
<td>Email</td>
<td><input type="email"value="" placeholder="请输⼊Email:"></td>
</tr>
<tr height="40px">
<td>姓名:</td>
<td><input type="text" placeholder="请输⼊姓名:"></td>
</tr>
<tr height="40px">
<td>⼿机号:</td>
<td><input type="tel" placeholder="请输⼊你的⼿机号:"></td>
</tr>
<tr height="40px">
<td>性别:</td>
<td><input type="radio" name="sex" value="男">男
<input type="radio" name="sex" value="⼥">⼥</td>
</tr>
<tr height="40px">
<td>出⽣⽇期:</td>
<td><input type="date"></td>
</tr>
<tr height="40px">
<td>验证码:</td>
<td><input type="text"value="" placeholder="请输⼊验证码:"></td>
</tr>
<tr height="40px" align="center">
<td colspan="2">
<input type="submit" value="注册">
</td>
</tr>
</form>
</table>
</body>
</html>
结果:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。