Correcting teacher:天蓬老师
Correction status:qualified
Teacher's comments:样式虽丑了点, 但代码是正确的
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>form表单,列表,表格实例</title>
</head>
<body>
<header align="center">
<nav>
<a href="">首页</a>
<a href="">开展业务</a>
<a href="">公司新闻</a>
<a href="">关于我们</a>
</nav>
</header>
<div class="container">
<main>
<section>
<form action="doit.php" name="resgister">
<table
border="1"
width="800"
cellpadding="5"
cellspacing="0"
align="center"
>
<colgroup>
<col span="2" bgcolor="wheat">
<col bgcolor="orange">
<col bgcolor="lightblue">
<col bgcolor="lightpink">
</colgroup>
<caption>
<h1>用户注册</h1>
</caption>
<thead>
<tr bgcolor="aqua">
<th><label for="username">用户名</label></th>
<th><label for="password">密码</label></th>
<th><label for="male">性别</label></th>
<th><label for="email">邮箱</label></th>
<th><label for="programme">爱好</label></th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input
type="text"
name="username"
id="username"
placeholder="请输入用户名"
value="zhangsan"
maxlength="16"
required
autofocus
autocomplete
/>
</td>
<td>
<input
type="password"
name="password"
id="password"
value="zhangsan001"
required
maxlength="20"
placeholder="请输入密码"
/>
</td>
<td>
<input type="radio" name="gender" id="male" value="male" checked/>男
<input type="radio" name="gender" id="female" value="female"/>女
</td>
<td>
<input
type="email"
name="email"
id="email"
placeholder="请输入邮箱"
value="example@qq.com"
autocomplete
/>
</td>
<td>
<input type="checkbox" name="hobby[]" id="programme" value="programme"/>编程
<input type="checkbox" name="hobby[]" id="sport" value="sport" checked/>运动
<input type="checkbox" name="hobby[]" id="reading" value="reading" checked/>读书
</td>
</tr>
<tr bgcolor="scan">
<td colspan="5" align="center"><input type="submit" value="注册"></td>
</tr>
</tbody>
</table>
</form>
</section>
</main>
<aside>
<ul>
<li><a href="" target="_blank">关于新冠疫情的工作安排</a></li>
<li><a href="" target="_blank">清明节放假安排</a></li>
<li><a href="" target="_blank">php.cn11期线上培训开课啦!</a></li>
</ul>
</aside>
</div>
<footer align="center">
2020©tianlong 版权所有
</footer>
</body>
</html>