“
html,,,,登记表,,,,姓名:,,邮箱:,,,,,,“
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF8">
<meta name="viewport" content="width=devicewidth, initialscale=1.0">
<title>登记表模板</title>
<style>
table {
width: 100%;
bordercollapse: collapse;
}
th, td {
border: 1px solid black;
padding: 8px;
textalign: left;
}
th {
backgroundcolor: #f2f2f2;
}
</style>
</head>
<body>
<h1>登记表模板</h1>
<form>
<table>
<tr>
<th>姓名</th>
<th>性别</th>
<th>年龄</th>
<th>电话</th>
<th>邮箱</th>
</tr>
<tr>
<td><input type="text" name="name" required></td>
<td>
<select name="gender" required>
<option value="男">男</option>
<option value="女">女</option>
</select>
</td>
<td><input type="number" name="age" required></td>
<td><input type="tel" name="phone" required></td>
<td><input type="email" name="email" required></td>
</tr>
</table>
<br>
<input type="submit" value="提交">
</form>
</body>
</html> 
(图片来源网络,侵删)
【版权声明】:本站所有内容均来自网络,若无意侵犯到您的权利,请及时与我们联系将尽快删除相关内容!
发表回复