Correcting teacher:PHPz
Correction status:qualified
Teacher's comments:很棒
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>课程表</title>
</head>
<body>
<h2 style="text-align:center">课程表</h2>
<table border="1" cellpadding="20" width="100%">
<tr>
<th colspan="2">时间\日期</th>
<th>周一</th>
<th>周二</th>
<th>周三</th>
<th>周四</th>
<th>周五</th>
</tr>
<tr>
<th rowspan="2">上午</th>
<th>9:30-10:15</th>
<th>语文</th>
<th>数学</th>
<th>英语</th>
<th>体育</th>
<th>美术</th>
</tr>
<tr>
<th>10:25-11:10</th>
<th>音乐</th>
<th>科学</th>
<th>手工</th>
<th>娱乐</th>
<th>思想品德</th>
</tr>
<tr>
<th colspan="7"></th>
</tr>
<tr>
<th rowspan="2">下午</th>
<th>14:30-15:15</th>
<th>语文</th>
<th>英语</th>
<th>体育</th>
<th>美术</th>
<th>音乐</th>
</tr>
<tr>
<th>15:25-16:10</th>
<th>数学</th>
<th>科学</th>
<th>手工</th>
<th>语文</th>
<th>音乐</th>
</tr>
</table>
</body>
</html>