```<!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>
<!-- 表格样式 -->
<table border="2">
<!-- caption标题 -->
<caption>
课程表
</caption>
<!-- thead表头 -->
<thead>
<tr>
<th>节次/星期</th>
<th>时间</th>
<th>星期一</th>
<th>星期二</th>
<th>星期三</th>
<th>星期四</th>
<th>星期五</th>
</tr>
</thead>
<!-- 表体 -->
<tbody>
<tr>
<th rowspan="4">上午</th>
<th>8:00-8:40</th>
<th>语文</th>
<th>数学</th>
<th>英语</th>
<th>化学</th>
<th rowspan="7">物理</th>
</tr>
<tr>
<!-- <th>上午</th> -->
<th>8:50-9:30</th>
<th>数学</th>
<th>化学</th>
<th>英语</th>
<th>语文</th>
<!-- <th>物理</th> -->
</tr>
<tr>
<!-- <th>上午</th> -->
<th>9:40-10:20</th>
<th>语文</th>
<th rowspan="2">英语</th>
<th rowspan="2">数学</th>
<th rowspan="2">化学</th>
<!-- <th>物理</th> -->
</tr>
<tr>
<!-- <th>上午</th> -->
<th>10:30-11:20</th>
<th>英语</th>
<!-- <th>数学</th> -->
<!-- <th>英语</th> -->
<!-- <th>化学</th> -->
<!-- <th>物理</th> -->
</tr>
<tr>
<th rowspan="4">下午</th>
<th>14:00-14:40</th>
<th>语文</th>
<th>化学</th>
<th rowspan="2">英语</th>
<th>数学</th>
<!-- <th>物理</th> -->
</tr>
<tr>
<!-- <th>上午</th> -->
<th>14:50-15:30</th>
<th>数学</th>
<th rowspan="2">数学</th>
<!-- <th>英语</th> -->
<th rowspan="2">化学</th>
<!-- <th>物理</th> -->
</tr>
<tr>
<!-- <th>上午</th> -->
<th>15:40-16:40</th>
<th>物理</th>
<!-- <th>化学</th> -->
<th>物理</th>
<!-- <th>化学</th> -->
<!-- <th>物理</th> -->
</tr>
</tbody>
<!-- 表尾 -->
<tfoot>
<tr></tr>
</tfoot>
</table>
</body>
</html>
```